{% extends "faq/base.html" %} {% load i18n %} {% comment %} This template will be used regardless of what ``faq.urls`` patterns are used. But note that you will want to code this differently depending on the patterns used. This template is coded for either ``normal`` or ``deep``. {% endcomment %} {% block title %}{% trans "Frequently Asked Questions" %}{% endblock %} {% block header %}{% trans "Frequently Asked Questions" %}{% endblock %} {% block content %}
    {% for topic in topic_list %}
  1. {{ topic.title }}
  2. {% comment %} For ``faq.urls.shallow`` you may do something like the following.
  3. {{ topic.title }}

      {% for question in topic.questions.published %}
    1. {{ question.question }}

      {{ question.answer|linebreaks|urlize }}
    2. {% endfor %}
  4. {% endcomment %} {% endfor %}
{% endblock %}