{% extends "form.html" %} {% load typogrify display %} {% load staticfiles compress %} {% block noform %}
{% block js %} {% endblock %}
{% 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 topic : {{ topic_node.preferred_name }}


    {% for topic in project_topics.all %}
  1. {{ topic.project }}: {{ topic|as_link }}
  2. {% endfor %}
{% 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 %}
    {% for document in documents %}
  • {{ document|as_link|typogrify }}
  • {% endfor %}
{% else %} There are no documents related to {{ topic.preferred_name }}. {% endif %}
{% endcomment %}
{% endblock %}