27 lines
920 B
HTML
27 lines
920 B
HTML
|
<table class="full-width data-table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
[%- for column in columns %]
|
||
|
{% if "[[ column.name ]]" not in skip_columns %}
|
||
|
<th>[[ column.name ]]</th>
|
||
|
{% endif %}
|
||
|
[%- endfor %]
|
||
|
<th>Actions</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for instance in instances %}
|
||
|
<tr>
|
||
|
[%- for column in columns %]
|
||
|
{% if "[[ column.name ]]" not in skip_columns %}
|
||
|
<td>{{ instance.[[ column.name ]] }}</td>
|
||
|
{% endif %}
|
||
|
[%- endfor %]
|
||
|
<td>
|
||
|
<a href="{{ url_for('update_[[ name|camel_to_snake ]]', uuid=instance.id, _next=request.path) }}">e</a> |
|
||
|
<a href="{{ url_for('delete_[[ name|camel_to_snake ]]', uuid=instance.id, _next=request.path) }}">x</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|