{% extends "top.html" %} {% block title %}View Completed Courses{% endblock %} {% block content %}
{{ user.username }}
{{ user.name }}

Completed Courses

{% if courses|length == 0 %}
No Courses Completed
{% endif %} {% for course in courses %} {% with isAlt=forloop.counter|divisibleby:"2" %} {{ forloop.counter }}. {{ course.course.name }} (Completed at: {{ course.completion_date }})
{% endwith %} {% endfor %}
{% endblock %}