{% extends 'publisher/base.html' %} {% load i18n %} {% load static %} {% block title %} {% trans "Course Detail" %} {% endblock title %} {% block page_content %} {% include 'alert_messages.html' %}
{% with object.history.all as history_list %} {% if history_list.count > 1 %}
{% include 'publisher/_history_widget.html' %}
{% endif %} {% endwith %} {% if can_edit %} {% url 'publisher:publisher_courses_edit' pk=object.id as edit_page_url %} {% trans "EDIT" %}
{% endif %}
{% trans "Organization Name" %}
{{ object.organizations.first }}
{% trans "Course Team Admin" %}
{{ object.course_team_admin.full_name }}
{% trans "Course Title" %}
{{ object.title }}
{% trans "Course Number" %}
{{ object.number }}
{% trans "Short Description" %}
{% with object.short_description as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Long Description" %}
{% with object.full_description as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "What You Will Learn" %}
{% with object.expected_learnings as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Primary Subject" %}
{% with object.primary_subject as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Additional Subject" %}
{% with object.secondary_subject as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Additional Subject" %}
{% with object.tertiary_subject as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Course Image" %}
{% if object.course_image_url %} {% trans 'Course Image' %} {% else %} {% trans "(Required) Not yet added" %} {% endif %}
{% trans "Prerequisites" %}
{% with object.prerequisites as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Course Level" %}
{% with object.level_type as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Learner Testimonials" %}
{% with object.learner_testimonial as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "FAQ" %}
{% with object.faq as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Syllabus" %}
{% with object.syllabus as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "About Video Link" %}
{% with object.video_link as value %} {% if value %} {{ value }} {% else %} {% trans "(Optional) Not yet added" %} {% endif %} {% endwith %}
{% endblock %} {% block extra_js %} {% endblock %}