{% 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 %} {% if topic.content %}

{{ topic.content|safe }}

{% endif %} {% if help_files %}
{% for help_file in help_files %} {% has_perm user help_files.change_helpfile help_file as can_edit %} {{ help_file }} {% if user.profile.is_superuser %} {{ help_file.obj_perms }}{% endif %} {% endfor %}
{% endif %}
{% endblock %}