{% 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" %}
{{ object.short_description }}
{% trans "Full Description" %}
{{ object.full_description }}
{% trans "Expected Learnings" %}
{{ object.expected_learnings }}
{% trans "Primary Subject" %}
{{ object.primary_subject }}
{% trans "Secondary Subject" %}
{{ object.secondary_subject }}
{% trans "Tertiary Subject" %}
{{ object.tertiary_subject }}
{% trans "Course Image" %}
{% if object.image %} {% trans 'Course Image' %} {% endif %}
{% trans "Prerequisites" %}
{{ object.prerequisites }}
{% trans "Course Level" %}
{{ object.level_type }}
{% endblock %} {% block extra_js %} {% endblock %}