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

HELP DESK

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

{{ question.question }}

{{ question.answer }}


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

{{ question.question }}

{{ question.answer }}

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