11 lines
369 B
HTML
11 lines
369 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) }}">e</a> |
|
|
<a href="{{ url_for('delete_blog_post', uuid=instance.id) }}">x</a>
|
|
]
|
|
</li>
|
|
{% endfor %} |