{% extends "_base.html" %} {% block title %}{{ super() }} {% trans %}Collections{% endtrans %}{% endblock %} {% block crumbs %}{{ super() }} / {% trans %}Collections{% endtrans %} {% endblock %} {% block body %} Collections in this service {% trans %}Name{% endtrans %} {% trans %}Type{% endtrans %} {% trans %}Description{% endtrans %} {% for col in data['collections'] %} {{ col['title'] | striptags | truncate }} {{ col["itemType"] }} {{ col['description'] | striptags | truncate }} {% endfor %} {% endblock %}