{% extends 'base_course.html' %} {% block top_content %}
{% include 'summary.html' %} {% include 'registration_module.html' %}
{{course_info.preview.after_top_content_ends | safe}} {% endblock %} {% block main_content %}

{# I18N: This should be interpreted as a noun. It is the title for the course schedule on the main contents page. #} {{ gettext('Schedule') }}

    {% for unit in units %} {% if unit.type == 'A' %}
  • {{ unit.title }}

  • {% elif unit.type == 'U' %}
  • {# I18N: A row in the course schedule. #} {{ gettext('Unit %(id)s - %(title)s', id=unit.index, title=unit.title) }}

  • {% elif unit.type == 'O' %}
  • {{ unit.title }}

  • {% else %}
  • Error: unit type not recognized.

  • {% endif %} {% endfor %}
{{course_info.preview.after_main_content_ends | safe}} {% endblock %}