{% extends "base.html" %} {% macro collection_row(collection) %}
{{ collection }}
{% endmacro %} {% block subheader %}

Collections

{% endblock %} {% block content %}
{% for group in groups %}
{{ group }} {{ group.collections|length }}
{% for collection in group.collections %} {{ collection_row(collection) }} {% endfor %}
{% endfor %} {% if uncategorized %}
Uncategorized {{ uncategorized|length }}
{% for collection in uncategorized %} {{ collection_row(collection) }} {% endfor %}
{% endif %}
{% endblock %}