{% extends "base.html" %} {% block titleblock %} {{ view.page_title }} {% endblock %} {% block content %} {% load addclass %}

{{ view.page_title }}



{% regroup object_list by web_help_category as category_list %} {% if category_list %}

This section of the site is a guide to understanding the mechanics behind {{ game_name }}.

It is organized first by category, then by topic. The box to the right will let you skip to particular categories.


{% for web_help_category in category_list %}
{{ web_help_category.grouper|title }}
    {% for object in web_help_category.list %}
  • {{ object|title }} {% if object.web_get_admin_url %} {% if user.is_staff %} -edit- {% endif %} {% endif %}
  • {% endfor %}
{% endfor %}
{% if user.is_staff %} Admin
{% endif %}
Category Index
{% else %} {% if user.is_staff %}
{% endif %}
{% endif %}

{% endblock %}