{% extends "faq/base.html" %} {% load i18n %} {% comment %} This template will be used when either ``faq.urls.normal`` (default) or ``faq.urls.deep`` patterns are used. Note that you will want to code this differently depending on the patterns. This template is coded for ``normal``. {% endcomment %} {% block title %}{% blocktrans with topic.title as topic %}FAQ: {{ topic }}{% endblocktrans %}{% endblock %} {% block header %} {% trans "FAQ" %} › {{ topic }} {% endblock %} {% block content %}

{{ topic.description }}

    {% for question in question_list %}
  1. {{ question.question }}

    {{ question.answer|linebreaks|urlize }}
  2. {% comment %} For ``deep`` you may do something like the following.
  3. {{ question.question }}
  4. {% endcomment %} {% endfor %}
{% endblock %}