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

{{ topic_node.preferred_name }}

{% include "includes/related_topics_header.html" %}
{% with project_topics=topic_node.project_topics %}

{{ project_topics.count }} project{% if project_topics.count > 1%}s{% endif %} refer{% if project_topics.count = 1%}s{% endif %} to this topic.

{% endwith %}
{% comment %}
{% 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 %}
{% endcomment %} {% endblock %}