blog/webapp/templates/blog_post/_table.html

33 lines
1.0 KiB
HTML

<table class="full-width data-table">
<thead>
<tr>
{% if "filename" not in skip_columns %}
<th>{{ _("filename") }}</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 "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>