Files
django-maraudes/website/templates/tables/table.html
2018-10-14 17:24:48 +02:00

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>