{% extends 'base.html' %} {% load i18n %} {% block title %} {% trans "Course Form" %} {% endblock title %} {% block content %}
{% trans "Title" %}
{{ object.title }}
{% trans "Number" %}
{{ object.number }}
{% trans "Course ID" %}
{{ object.lms_course_id }}
{% trans "Sub Title" %}
{{ object.short_description }}
{% trans "School" %}
{{ object.organization_key }}
{% trans "Subject" %}
{% for subject in object.subjects %}{{ subject.name }}{% endfor %}
{% trans "XSeries" %}
{% if object.is_xseries %}{{ object.xseries_name }}{% endif %}
{% trans "Start Date" %}
{{ object.start|date:"Y-m-d" }}
{% trans "End Date" %}
{{ object.end|date:"Y-m-d" }}
{% trans "Self Paced" %}
{{ object.pacing_type }}
{% trans "Staff" %}
{{ object.persons }}
{% trans "Estimated Effort" %}
{% if object.min_effort and object.max_effort %} {{ object.min_effort }} {% trans "to" %} {{ object.max_effort }} {% trans "hours per week" %} {% endif %}
{% trans "Languages" %}
{{ object.language.name }}
{% trans "Video Translations" %}
{{ object.video_languages }}
{% trans "Level" %}
{{ object.level_type }}
{% trans "About this Course" %}
{{ object.full_description }}
{% trans "What you'll learn" %}
{{ object.expected_learnings }}
{% trans "Prerequisite" %}
{{ object.prerequisites }}
{% trans "Keywords" %}
{{ object.wrapped_obj.keywords }}
{% trans "Sponsors" %}
{% for sponsor in object.wrapped_obj.sponsor.all %} {{ sponsor.name }}
{% endfor %}
{% trans "Price" %}
{{ object.verified_seat_price }}

{% trans "Enrollments" %}

{% trans "Seats" %}
{% for seat in object.wrapped_obj.seats.all %} {{ seat.type }}
{% endfor %}
{% endblock %}