{% extends 'course/basic_page.html' %} {% block course_active %}active{% endblock %} {% block body %}

YOUR COURSES

{% if courses %} {% for course in courses %}

{{ course.code }}

{{ course.name }}

View Details
{% cycle '' '' '' '' '' '
' %} {% endfor %} {% else %}

You are not enrolled in any courses

{% endif %}

Notifications

{% for notification in notifications reversed %}
{{ notification.course }}
{{ notification.time }}
{{ notification.content }}
{% endfor %}
{% endblock %}