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

{{ topic.description }}

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

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