{% extends "wagtailadmin/base.html" %} {% load i18n %} {% block titletag %}Documents{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %} {% block content %} {% trans "Documents" as doc_str %} {% if user_can_add %} {% trans "Add a document" as add_doc_str %} {% url "wagtaildocs:add_multiple" as add_link %} {% include "wagtailadmin/shared/header.html" with title=doc_str action_url=add_link icon="doc-full-inverse" action_text=add_doc_str search_url="wagtaildocs:index" %} {% else %} {% include "wagtailadmin/shared/header.html" with title=doc_str icon="doc-full-inverse" search_url="wagtaildocs:index" %} {% endif %}