11 lines
409 B
HTML
11 lines
409 B
HTML
{% for instance in instances %}
|
|
<li>
|
|
<a href="{{ url_for('get_blog_post', uuid=instance.id) }}">
|
|
{% include "blog_post/_title.html" %}</a>
|
|
|
|
|
[
|
|
<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>
|
|
]
|
|
</li>
|
|
{% endfor %} |