{% extends "helpme/base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block help_content %}

{% trans "HELP DESK" %}

{% trans "FAQ" %}
{% trans "ASK THE HELP DESK" %}
{% for category in categories %}
{{ category }}
{% for question in category.questions.all %}

{{ question.question }}

{{ question.answer }}


{% empty %} {% trans "There are no Frequently Asked Questions in this category yet." %} {% endfor %}
{% empty %} {% for question in questions %}

{{ question.question }}

{{ question.answer }}

{% empty %}
{% trans "There are no Frequently Asked Questions yet." %}
{% endfor %} {% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}