{% extends "appointments/base.html" %} {% block extrahead %} {% load bootstrap3 %} {% endblock %} {% block title %} Graduate Assistant Appointments {% endblock %} {% block content %}
Appointments
{% for appointment in appointments %} {% endfor %}
Name NetID Term Type Fall Spring Summer Percent Status actions
{{ appointment.student_name }} {{ appointment.student_netid }} {{ appointment.term }} {{ appointment.appointment_type }} {% if appointment.fall_semester %} {% bootstrap_icon "ok" extra_classes='text-success' %} {% else %}   {% endif %} {% if appointment.spring_semester %} {% bootstrap_icon "ok" extra_classes='text-success' %} {% else %}   {% endif %} {% if appointment.summer_session %} {% bootstrap_icon "ok" extra_classes='text-success' %} {% else %}   {% endif %} {{ appointment.percent }} {{ appointment.status|slugify }} {% if appointment.term.term == current_term %} {% comment %} {% endcomment %} {% comment %} {% endcomment %} {% else %} {% comment %} {% endcomment %} {% endif %}
{% endblock %}