{% extends "base.html" %} {% block title %}My Timetable{% endblock %} {% block nav_timetable_student %}active{% endblock %} {% block content %} {% if enrollment %}
{% if current_term or current_academic_year or current_year %} {% endif %}
{% if entries_by_year_day %}
{% for year_group in entries_by_year_day %} {% with yi=forloop.counter %}

{% for day_group in year_group.days %}

{% for entry in day_group.entries %}
{{ entry.start_time|time:"H:i" }}
{{ entry.end_time|time:"H:i" }}
{{ entry.display_name }}
{% if entry.venue %}
{{ entry.venue }}
{% endif %}
{{ entry.get_term_display }}
{{ entry.academic_year }}
{% endfor %}
{% endfor %}
{% endwith %} {% endfor %}
{% else %}

No timetable found for your program yet.

The timetable will appear here once it is set up by the admin.

{% endif %} {% else %}
No enrollment found. Your timetable will appear here once you are enrolled.
{% endif %} {% endblock %}