{% load i18n get_collection_status %} {% if collection_list %}
{% trans "Name" %} | {% trans "CollectionGroup" %} | {% trans "Ready to use" %} | {% trans "Status" %} | {% trans "Items" %} | {% trans "Last crawling" %} | {% for collection in collection_list %}
---|---|---|---|---|---|
{{ collection }} | {{ collection.collectiongroup }} | {% get_collection_status collection %} | {{ collection.get_status_display }} | {{ collection.item_set.with_valids.count }} | {{ collection.last_crawling_time }} |
{% trans "There are no collections managed yet" %}
{% endif %}