{% extends 'stdgrid.html.twig' %} {% block title %}{% trans %}%page_title%{% endtrans %}{% endblock %} {% block body %}

{% trans %}%page_title%{% endtrans %}

{% if add_collection %}
{{ form(add_collection) }}
{% endif %}

{% trans %}%list_title%{% endtrans %}

{% for col in collections %}
{{ col.name }}
{{ icon('edit') | raw }} {{ form(fn.editForm(col)) }}
{{ icon('delete') | raw }} {{ form(fn.rmForm(col)) }}
{% endfor %}
{% endblock body %}