{% extends "richie/fullwidth.html" %} {% load cms_tags i18n %} {% block content %}{% spaceless %} {% with category=current_page.category header_level=2 %}
{% placeholder "banner" %}

{% render_model request.current_page "titles" %}

{% placeholder "description" %}
{% for course in category.get_courses %} {# If the current page is a draft, show draft courses with a class annotation for styling #} {% if current_page.publisher_is_draft %} {% if course.check_publication is True %} {% include "courses/cms/fragment_course_glimpse.html" with course=course.public_extension %} {% else %} {% include "courses/cms/fragment_course_glimpse.html" with course=course %} {% endif %} {# If the current course page is the published version, show only the courses that are published #} {% elif course.check_publication is True %} {% include "courses/cms/fragment_course_glimpse.html" with course=course.public_extension %} {% endif %} {% empty %}

{% trans "No associated courses" %}

{% endfor %}
{% endwith %} {% endspaceless %}{% endblock content %}