{% extends "base.html" %} {% load typogrify display %} {% block title %}: {{ topic.preferred_name }}{% endblock %} {% block js %} {% endblock %} {% block css %} {% endblock %} {% block content %}

{{ topic.preferred_name }}

{% include "includes/related_topics_header.html" %}
{% if editable_project_containers %}
{% if editable_project_containers|length > 1 %} You can edit the following connections to this topic: {% else %} {% with container=editable_project_containers.0 %} Edit topic as a member of the {{ container.project }} {% endwith %} {% endif %}
{% endif %}
{% for summary in summaries %} {% include "includes/topic_summary.html" with display_project=True %} {% empty %}
There is no article about {{ topic.preferred_name }} yet.
{% endfor %}
{% if request.user.is_authenticated %} Edit {% endif %}
{{ topic|display_edit_history }}
{% if notes %} {% for note in notes %} {% endfor %} {% else %} There are no notes or queries related to {{ topic.preferred_name }}. {% endif %}
{% if documents %} {% else %} There are no documents related to {{ topic.preferred_name }}. {% endif %}
{% endblock %}