{% extends "wagtailadmin/base.html" %} {% load wagtailimages_tags %} {% load i18n %} {% block titletag %}{% trans "References" %}{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %} {% block content %} {% trans "References" as ref_str %} {% if user_can_add %} {% trans "Add a reference" as add_ref_str %} {% include "wagtailadmin/shared/header.html" with title=ref_str add_link="wagtailreferences:add" icon="list-ol" add_text=add_ref_str search_url="wagtailreferences:index" %} {% else %} {% include "wagtailadmin/shared/header.html" with title=ref_str icon="list-ol" search_url="wagtailreferences:index" %} {% endif %}
{% if collections %} {% endif %}
{% include "wagtail_references/references/results.html" %}
{% endblock %}