{% extends "base_template.html" %} {% from "courses/admin/_form.html" import flashes, state_badge, delete_button with context %} {% block title %}{{ _('Courses') }}{% endblock %} {% block content %}
{{ _('One course per academic year. Each one is a snapshot: editing this year never changes what an earlier one shows.') }}
| {{ _('Course') }} | {{ _('Readers see it') }} | {{ _('Actions') }} |
|---|---|---|
|
{{ course.name }}
{{ course_url(course) }}
|
{{ state_badge(course) }} | {{ _('View') }} {{ _('Edit') }} {{ delete_button(url_for('courses.admin_course_delete', course_id=course.id), confirm_form, _('Remove this course and everything in it?')) }} |
| {# Copying is how next September starts: the pages that repeat come across, withheld, and last year's dates do not come with them. #} | ||
| {{ _('No courses yet.') }} | ||