{% extends 'base.html' %} {% block title %}{% translate 'FAQ' %} - {{ block.super }}{% endblock %} {% block content %}

{% translate 'Frequently Asked Questions (FAQs)' %}

{% for section in sections %}

{{ section.title }}

{% for question in section.questions.all %}

{{ question.answer|safe }}
{% endfor %} {% endfor %}
{% endblock %} {% block additional_javascript %} {% endblock %}