{% extends "appointments/base.html" %} {% block extrahead %} {% load bootstrap3 %} {% endblock %} {% block title %} Graduate Assistant Appointments {% endblock %} {% block content %}
{{ filter_name }} Appointments
{% for status_name in status_list %} {% endfor %}
{% for appointment in appointments %} {% endfor %}
Name NetID Mentor Type Status
{{ appointment.student_name }} {{ appointment.student_netid }} {% if appointment.appointment_type != 'TA' %} {{ appointment.mentor_netid }} {% else %}   {% endif %} {{ appointment.appointment_type }} {{ appointment.status }}
{% endblock %}