13 lines
481 B
HTML
13 lines
481 B
HTML
<table class="table table-responsize table-sm table-striped table-borderless shadow">
|
|
{% if header %}<tr>
|
|
<th colspan="{{ cols_number }}" class="thead-dark text-center">{{ header }}</th>
|
|
</tr>{% endif %}
|
|
{% for row in rows %}<tr class="d-flex justify-content-between">
|
|
{% for object in row %}<td class="flex-shrink-1">
|
|
{% if object %}{% include cell_template with object=object %}{%endif%}
|
|
</td>
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|