41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<table class="full-width data-table">
|
|
<thead>
|
|
<tr>
|
|
{% if "filename" not in skip_columns %}
|
|
<th>{{ _("filename") }}</th>
|
|
{% endif %}
|
|
{% if "title" not in skip_columns %}
|
|
<th>{{ _("title") }}</th>
|
|
{% endif %}
|
|
{% if "body" not in skip_columns %}
|
|
<th>{{ _("body") }}</th>
|
|
{% endif %}
|
|
<th>{{ _("Actions") }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for instance in instances %}
|
|
<tr>
|
|
{% if "filename" not in skip_columns %}
|
|
<td>
|
|
{{ instance.filename }}
|
|
</td>
|
|
{% endif %}
|
|
{% if "title" not in skip_columns %}
|
|
<td>
|
|
{{ instance.title }}
|
|
</td>
|
|
{% endif %}
|
|
{% if "body" not in skip_columns %}
|
|
<td>
|
|
{{ instance.body }}
|
|
</td>
|
|
{% endif %}
|
|
<td>
|
|
<a href="{{ url_for('update_blog_post', uuid=instance.id, _next=request.path) }}">e</a> |
|
|
<a href="{{ url_for('delete_blog_post', uuid=instance.id, _next=request.path) }}">x</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table> |