Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(subscription): Added subscription feature - OEL-2225 #507

Open
wants to merge 4 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions src/components/bcl-table/table.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,17 @@
</caption>
{%- endif -%}
{% if _table_head is not empty %}
{% set _table_head_classes = '' %}
{% if _table_head.variant is not empty %}
{% set _table_head_classes = 'table-' ~ _table_head.variant %}
{% endif %}
<thead>
{% if _table_head.cells is not empty and _table_head.cells is iterable %}
<tr>
<tr
{% if _table_head_classes is not empty %}
class="{{ _table_head_classes }}"
{% endif %}
>
{% for _cell in _table_head.cells %}
<td
{% if _cell.col_span is not empty %}
Expand Down Expand Up @@ -170,9 +178,17 @@
{% endif %}

{% if _table_footer is not empty %}
{% set _table_footer_classes = '' %}
{% if _table_footer.variant is not empty %}
{% set _table_footer_classes = 'table-' ~ _table_footer.variant %}
{% endif %}
<tfoot>
{% if _table_footer.cells is not empty and _table_footer.cells is iterable %}
<tr>
<tr
{% if _table_footer_classes is not empty %}
class="{{ _table_footer_classes }}"
{% endif %}
>
{% for _cell in _table_footer.cells %}
<td
{% if _cell.col_span is not empty %}
Expand Down
Loading