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

Manage Managers


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