{% load i18n static %} {% include 'filter_tags.html' %} {% if faq_categories %}
{% for category in faq_categories %}

{{category.title}}

{% if perms.helpdesk.change_faqcategory or perms.helpdesk.delete_faqcategory %}
    {% if perms.helpdesk.change_faqcategory %}
  • {% trans "Edit" %}
  • {% endif %} {% if perms.helpdesk.delete_faqcategory %}
  • {% csrf_token %}
  • {% endif %}
{% endif %}

{{category.description}}

{% trans "View FAQs" %}
{% endfor %}
{% else %}
Page not found. 404.

{% trans "No Records found." %}

{% trans "There are no FAQs at the moment." %}

{% endif %}