2020-06-03 16:00:51 +02:00
|
|
|
{% for instance in instances %}
|
2020-06-04 18:02:34 +02:00
|
|
|
<li>
|
|
|
|
<a href="{{ url_for('get_[[ name|camel_to_snake ]]', uuid=instance.id) }}">
|
|
|
|
{% include "[[ name|camel_to_snake ]]/_title.html" %}</a>
|
|
|
|
|
|
|
|
|
[
|
2020-06-07 15:45:42 +02:00
|
|
|
<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>
|
2020-06-04 18:02:34 +02:00
|
|
|
]
|
|
|
|
</li>
|
2020-06-03 16:00:51 +02:00
|
|
|
{% endfor %}
|