{% extends 'publisher/base.html' %} {% load i18n %} {% load staticfiles %} {% block title %} {% trans "Course Detail" %} {% endblock title %} {% block page_content %} {% include 'alert_messages.html' %}
{% trans "Institution" %}
{{ object.organizations.first.name }}
{% trans "Course Team Admin" %}
{{ object.course_team_admin.full_name }}
{% trans "Course Title" %}
{{ object.title }}
{% trans "Course Number" %}
{{ object.number }}
{% trans "Brief Description" %}
{% with object.short_description as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Full Description" %}
{% with object.full_description as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Expected Learnings" %}
{% 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 "Secondary Subject" %}
{% with object.secondary_subject as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Tertiary Subject" %}
{% with object.tertiary_subject as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Course Image" %}
{% if object.image %} {% 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 %}
{% endblock %} {% block extra_js %} {% endblock %}