{% extends "base.html" %}
{% load static from staticfiles %}
{% load request_tags %}
{% load thread_tags %}
{% block headers %}
{% endblock %}
{% block content %}
- Title
- {{ targetManager.title }}
- Incumbent
- {% if targetManager.incumbent %}{{ targetManager.incumbent|display_user:user }}{% else %} {% endif %}
{% if targetManager.email %}
- E-mail
- {{ targetManager.email }}
{% elif targetManager.incumbent.email_visible and targetManager.incumbent.user.email %}
- Personal E-mail
- {{ targetManager.incumbent.user.email }}
{% endif %}
{% if targetManager.incumbent.phone_visible %}
- Personal Phone
- {{ targetManager.incumbent.phone_number }}
{% endif %}
- Compensation
- {% if targetManager.compensation %}{{ targetManager.compensation|safe }}{% else %} {% endif %}
- Duties
- {% if targetManager.duties %}{{ targetManager.duties|safe }}{% else %} {% endif %}
{% endblock %}