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