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

Manage Managers

{% if not managerset %}
No managers in database.
{% else %} {% for pos in managerset %} {% endfor %}
Title Incumbent Active President Workshift E-mail
{{ pos.title }} {% if pos.incumbent %} {{ pos.incumbent.user.get_full_name }}{% endif %} {% if pos.active %}1Yes{% else %}2No{% endif %} {% if pos.president %}1Yes{% else %}2No{% endif %} {% if pos.workshift_manager %}1Yes{% else %}2No{% endif %} {% if pos.email %} {{ pos.email }}{% endif %}
{% endif %}
Don't know how to use this page? Check out the Meta-Manager section of the help page.
{% endblock %} {% block endscripts %} {% endblock %}