{% extends "master.html" %} {% load ui %} {% load help %} {% load humanize %} {% block content %}

Collection Overview

{% for collection, children, overview_thumb in collections %} {% if collection.num_records or collection.children.count %}
{% if overview_thumb %} {% endif %}

{{ collection.title }}

{{ collection.description }}
{% if collection.agreement %}
{{ collection.agreement }}
{% endif %} {% for child in children %} {% if forloop.first %}
Sub-collections: {% endif %} {{ child.title }}{% if not forloop.last %}, {% else %}
{% endif %} {% endfor %} {% if collection.num_records %}
Explore {{ collection.num_records|intcomma }} record{{ collection.num_records|pluralize }} Browse
{% endif %}
{% endif %} {% empty %}
No collections available.
{% endfor %} {% endblock %}