{% extends "base.html" %} {% load static from staticfiles %} {% load thread_tags %} {% block content %}

Request Types


{% if not request_types %}
No request types found in database.
{% else %} {% for type in request_types %} {% endfor %}
Request Type Relevant Managers Enabled
{{ type.name }} {% for pos in type.managers.all %} {% if forloop.counter > 1 %}, {% endif %} {{ pos.title }} {% if pos.incumbent %} ({{ pos.incumbent }}) {% else %} (No incumbent) {% endif %} {% endfor %} {% if type.enabled %}1Yes{% else %}2No{% endif %}
{% endif %}
Don't know how to use this page? Check out the Request Types section of the help page.
{% endblock %} {% block endscripts %} {% endblock %}