{% extends 'stdgrid.html.twig' %} {% import '/cards/note/view.html.twig' as noteView %} {% block title %}{{ page_title | trans }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock stylesheets %} {% block body %}

{{ page_title | trans }}

{# Backwards compatibility with hAtom 0.1 #}
{% if add_collection %}
{{ form(add_collection) }}
{% endif %}

{{ 'Your collections' | trans }}

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