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

{{ topic.preferred_name }}

{% if topic.has_summary %}
{{ topic.summary|as_html }}
{% else %}
There is no article about {{ topic.preferred_name }} yet.
{% endif %} {% if topic.summary_cites.all %}

Sources

{% for cite in topic.summary_cites.all %} {% include "citation.include" %} {% endfor %}
{% endif %}
{% if request.user.is_authenticated %} Edit {% endif %}
{{ topic|display_edit_history }}
{% if notes %} {% for note, note_topics 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 }}. {% comment %} {% endcomment %} {% endif %}
{% endblock %}