{% 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 %}
{% if admin %}

Create a New Question

{% csrf_token %} {{ question_form|crispy }}

Create a New Category

{% csrf_token %} {{ category_form|crispy }}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}