{% with "help_choose_course" as help_id %}
{% with show_help as default_help_state %}
Select a Course {% include "help/help_button.html" %}
{% include "help/help_contentarea.html" %}
{% if add_privilege %}
Create new course
{% endif %}
Course Titles
|
Term |
Instructor |
Role |
{% if add_privilege %}
Actions |
{% endif %}
{% for course in object_list %}
{% include 'courseaffils/course_row.html' %}
{% empty %}
You don't seem to be enrolled in any courses. Please ask an administrator if you think you should be.
See your courses from previous years.
{% endfor %}
{% if infoless_courses %}
Sandboxes
Course Titles |
Term |
Instructor |
Role |
{% if add_privilege %}
Actions |
{% endif %}
{% for course in infoless_courses %}
{% include 'courseaffils/course_row.html' %}
{% endfor %}
{% endif %}
{% endwith %}
{% endwith %}
{% endblock %}