{% extends "helpme/base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block help_content %}
{% 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 %}
{% if perms.helpme.add_category %}

{% trans "Create a New Category" %}

{% csrf_token %} {{ category_form|crispy }}
{% endif %} {% if perms.helpme.add_question %}

{% trans "Create a New Question" %}

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