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

Managers

{% if not managerset %}
No managers in database.
{% else %} {% for pos in managerset %} {% endfor %}
Title Incumbent E-mail Personal Phone
{{ pos.title }} {% if pos.incumbent %} {{ pos.incumbent.user.get_full_name }}{% endif %} {% if pos.email %} {{ pos.email }} {% elif pos.incumbent.email_visible and pos.incumbent.user.email %} {{ pos.incumbent.user.email }} (personal) {% endif %} {% if pos.incumbent.phone_visible %}{{ pos.incumbent.phone_number }}{% endif %}
{% endif %}
{% endblock %} {% block endscripts %} {% endblock %}