{% 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 %}

{% for col in data['collections'] %} {% if col.get('itemType') != 'record' %} {% endif %} {% endfor %}
{% trans %}Name{% endtrans %} {% trans %}Description{% endtrans %}
{{ col['title'] | striptags | truncate }} {{ col['description'] | striptags | truncate }}

{% trans %}Record collections in this service{% endtrans %}

{% for col in data['collections'] %} {% if col.get('itemType') == 'record' %} {% endif %} {% endfor %}
{% trans %}Name{% endtrans %} {% trans %}Description{% endtrans %}
{{ col['title'] | striptags | truncate }} {{ col['description'] | striptags | truncate }}
{% endblock %}