{% extends "base.html" %} {% block title %}Documents · {{ portal_name }}{% endblock %} {% block main_class %} full-bleed{% endblock %} {% block content %}

{{ pane_title }}

{{ pane_sub }}

{% if staff_ui %}
Staff only

Add Documents

Drop files here, or choose files

As many as you like · up to {{ max_mb }}MB each

{% endif %}
{% for group in sections %}

{{ group.label }} {% if group.total %}{{ group.total }}{% endif %}

{% for item in group.items %}{% include "documents/_item.html" with hide_category=hide_category %}{% endfor %} {% if group.more %}
Show {{ group.more|length }} more in {{ group.label }}
{% for item in group.more %}{% include "documents/_item.html" with hide_category=hide_category %}{% endfor %}
{% endif %}
{% empty %}

No documents yet

Documents will appear here once they've been added.

{% endfor %}
{% if staff_ui %}

Add documents

{% include "backoffice/_uploader.html" %}

Edit

{% endif %} {% endblock %}