{% extends "table.html" %} {% block table %}

Courses

{% for obj in page.object_list %} {% empty %} {% endfor %}
Course Start Finish
{% if obj.label %} {{ obj.label }} {% else %} Unknown {% endif %} {% if obj.start %} {{ obj.start }} {% else %} Unknown {% endif %} {% if obj.finish %} {{ obj.finish }} {% else %} Unknown {% endif %}
No courses found
{% endblock table %}