{% extends "cms/base_site.html" %} {% load i18n %} {% load wagtailcore_tags %} {% load wagtailimages_tags %} {% block content %} {% if object_list %} {# list view #}
{{ page.summary }} {% trans "Go back to the publication" %}
{% with list_paginator=paginator %} {% include "cms/snippets/list.html" %} {% endwith %} {% else %} {# detail view #}
{{ page.body|richtext}}
{% block content_extras %} {% endblock %} {% if page.related_links.all %} {% endif %}
{% include "cms/snippets/comments.html" %}
{% block page_nav %} {% endblock %} {% endif %} {% endblock %}