{% extends "manage/base.html" %} {% load i18n breadcrumbs %} {% block breadcrumbs %} {% breadcrumbs "Collection groups:" %} {% endblock %} {% block content %}

{% trans "CollectionGroups managed by parser" %}

{% if collectiongroup_list %}
{% for collectiongroup in collectiongroup_list %}
{{ collectiongroup }}
{% with collectiongroup.collection_set.all as collections %}
{% trans "Collections" %}: {% if collections %} {% else %} {% trans "There are no collections for this collectiongroup" %} {% endif %}
{% endwith %} {% endfor %} {% else %}

{% trans "There are no collectiongroups managed yet" %}

{% endif %} {% endblock %}