17 lines
318 B
HTML
17 lines
318 B
HTML
<table class="element-table">
|
|
<thead><tr>
|
|
{% for col in columns %}
|
|
<th style="width: {{ col.width|default('auto') }}">{{ col.label }}</th>
|
|
{% endfor %}
|
|
</tr></thead>
|
|
<tbody>
|
|
{% for row in rows %}
|
|
<tr>
|
|
{% for col in columns %}
|
|
<td>{{ row[col.field]|default('') }}</td>
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|