{% extends "richie/fullwidth.html" %} {% load cms_tags i18n %} {% block content %}

{{ current_page.get_title }}

{% with course=current_page.course header_level=2 %}
{% placeholder "course_teaser" or %}

{% trans 'Add a video teaser.' %}

{% endplaceholder %}

{% trans 'About the course' %}

{% with header_level=3 %} {% placeholder "course_syllabus" or %}

{% trans 'Enter here a short description of your course.' %}

{% endplaceholder %} {% endwith %}

{% trans 'Format' %}

{% placeholder "course_format" or %}

{% trans 'How is the course structured?' %}

{% endplaceholder %}

{% trans 'Prerequisites' %}

{% placeholder "course_prerequisites" or %}

{% trans 'What are the prerequisites to follow this course?' %}

{% endplaceholder %}

{% trans 'Course team' %}

{% placeholder "course_team" or %}

{% trans 'Who are the teachers in the course team?' %}

{% endplaceholder %}

{% trans 'Course plan' %}

{% placeholder "course_plan" or %}

{% trans 'Enter here the detailed course plan' %}

{% endplaceholder %}

{% trans 'Subjects' %}

    {% for subject in course.subjects.drafts %} {# If the current page is a draft, show draft subjects with a class annotation for styling #} {% if current_page.publisher_is_draft %} {% if subject.check_publication is True %}
  • {{ subject.public_extension.extended_object.get_title }}
  • {% else %}
  • {{ subject.extended_object.get_title }}
  • {% endif %} {# If the current course page is the published version, show only the subjects that are published #} {% elif subject.check_publication is True %}
  • {{ subject.public_extension.extended_object.get_title }}
  • {% endif %} {% empty %}
  • {% trans "No associated subjects" %}
  • {% endfor %}

{% trans 'Organizations' %}

    {% if course.organization_main %} {% include "courses/cms/organization_fragment.html" with organization=course.organization_main is_main=True %} {% endif %} {% for organization in course.organizations.drafts %} {# If the current page is a draft, show draft organizations with a class annotation for styling #} {% if organization.id != course.organization_main.id %} {% include "courses/cms/organization_fragment.html" %} {% endif %} {% endfor %}

{% trans 'License' %}

{% trans 'License for the course content' %}

{% placeholder "license_course_content" or %}

{% trans 'What is the license for the course content?' %}

{% endplaceholder %}

{% trans 'License for the content created by course participants' %}

{% placeholder "license_course_participation" or %}

{% trans 'What is the license for the content created by course participants?' %}

{% endplaceholder %}
{% if course.active_session %} {{ course.active_session }} {% else %} {% trans "No active session" %} {% endif %}
{% endwith %}
{% endblock content %}