{% extends "faq/base.html" %} {% block title %}FAQ: {{ topic }} {{ block.super }}{% endblock title %} {% block content %}{{ block.super }}

Frequently Asked Questions: {{ topic|safe }} {% if user.is_staff %} (add question) {% endif %}

{% for question in questions %}
{{ question.text|safe }}
{{ question.answer|safe }}
{% endfor %}

Back to topic list... {% endblock content %}