{% extends "_base.html" %} {% block title %}{{ super() }} {% trans %}Collections{% endtrans %}{% endblock %} {% block crumbs %}{{ super() }} / {% trans %}Collections{% endtrans %} {% endblock %} {% block body %}

Collections in this service

{% for col in data['collections'] %} {% endfor %}
{% trans %}Name{% endtrans %} {% trans %}Type{% endtrans %} {% trans %}Description{% endtrans %}
{{ col['title'] | striptags | truncate }} {{ col["itemType"] }} {{ col['description'] | striptags | truncate }}
{% endblock %}