{% extends "layout.html" %} {% load i18n %} {% block title %}{% trans "FAQ" %}{% endblock %} {% block content %}

{% trans "Frequently Asked Questions" %}

{% if faqs %}
{% for f in faqs %}

{{ f.answer|linebreaksbr }}
{% endfor %}
{% else %} {% if request.user.is_authenticated and request.user.is_staff %}
{% url 'dashboard:faq_new' as faq_url %} {% blocktrans with url=faq_url %}Add FAQ items in the dashboard to display them here.{% endblocktrans %}
{% endif %} {% endif %}
{% trans "Got questions?" %} {% trans "Send us a message and we’ll get back to you quickly." %}
{% endblock %}