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

Request Types

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