{% extends "help_files/base.html" %} {% load help_file_tags %} {% load perm_tags %} {% block title %}{{ block.super }}{% firstof MODULE_HELP_FILES_LABEL_PLURAL trans 'Help Files' %} - {% blocktrans with t=topic %}{{ t }} Topic{% endblocktrans %}{% endblock %} {% block meta_description %}{{ topic.content|striptags|safe|truncatewords:40 }}}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{% help_file_search %}

Answers to frequently asked questions:

{% if help_files %}
    {% for help_file in help_files %}
  1. {{ help_file.question }}
  2. {% endfor %}
{% for help_file in help_files %} {% has_perm user help_files.change_helpfile help_file as can_edit %}

{{ help_file.question }}

{{ help_file.answer | safe }} {% if user.profile.is_superuser %} {{ help_file.obj_perms }}{% endif %} {% endfor %}
{% endif %}
{% endblock %}