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

Collection Management

{% if perms.data.add_collection %} Create new Collection {% endif %} {% if collections %} {% for collection in collections %} {% endfor %}
Title Owner Hidden Order Records Children
{{ collection.title }} {{ collection.owner.get_full_name|default:"-" }} {{ collection.hidden|yesno:"hidden," }} {{ collection.order|default:"-" }} {{ collection.records.count|intcomma }} {% for child in collection.children.all %} {{ child.title }}
{% endfor %}
{% else %}
You do not have permission to manage any collections.
{% endif %} {% endblock %}