{% extends "appointments/base.html" %} {% block title %} Graduate Assistant Appointments {% endblock %} {% block content %} {% if appointments is None %}

No appointments found. If you are expecting an appointment, please contact {{ settings.help_contact }}.

{% else %}

Your Appointments

{% for appointment in appointments %} {% endfor %}
Type Mentor Start Date End Date Deadline Percent Status Offer Letter
{{ appointment.appointment_type }} {% if appointment.appointment_type == 'TA' %}   {% else %} {{ appointment.mentor_name }} {% endif %} {{ appointment.start_date }} {{ appointment.end_date }} {{ appointment.offer_deadline }} {{ appointment.percent }} {{ appointment.status|slugify }} {% if appointment.current_letter %} {% else %} pending {% endif %}
{% endif %} {% endblock %}