{% load i18n %} {% block content %}
{% trans "Title" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ course_run.title }}
{% trans "Number" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ course_run.number }}
{% trans "Course ID" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with course_run.lms_course_id as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Subtitle" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with course_run.short_description as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Organization" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ course_run.organization_key }}
{% trans "MicroMasters" %}
{% with course_run.micromasters_name as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "XSeries" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% if course_run.is_xseries %} {{ course_run.xseries_name }} {% else %} {% trans "(Optional) Not yet added" %} {% endif %}
{% trans "Professional Certificate Name" %}
{% with course_run.professional_certificate_name as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Start Date (time in UTC)" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ course_run.start|date:"Y-m-d" }}
{% trans "End Date (time in UTC)" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ course_run.end|date:"Y-m-d" }}
{% trans "Self Paced" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ course_run.pacing_type }}
{% trans "Staff" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% if not course_run.course_staff %} {% trans "(Required) Not yet added" %} {% else %} {% for obj in course_run.course_staff %}
{% if obj.is_new %} {% trans "New" %} {% endif %} {{ obj.full_name }}
{{ obj.position }}
{{ obj.organization }}
{% endfor %} {% endif %}
{% trans "Estimated Effort" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% if course_run.min_effort and course_run.max_effort %} {{ course_run.min_effort }} {% trans "to" %} {{ course_run.max_effort }} {% trans "hours per week" %} {% elif course_run.min_effort %} {{ course_run.min_effort }} {% trans "hours per week" %} {% else %} {% with course_run.estimated_effort as field %} {% include "publisher/_render_required_field.html" %} {% endwith %} {% endif %}
{% trans "Languages" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with course_run.language.name as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Video Transcript Languages" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with course_run.transcript_languages as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Level" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with course_run.level_type as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Full Description" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with course_run.full_description as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "What You'll Learn" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with course_run.expected_learnings as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Course Image" %}
{% if course_run.course.image %} {% trans 'Course Image' %} {% else %} {% trans "(Required) Not yet added" %} {% endif %}
{% trans "Prerequisites" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with course_run.course.prerequisites as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Keywords" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with course_run.keywords as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Sponsors" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% if course_run.wrapped_obj.sponsor.all %} {% for sponsor in course_run.wrapped_obj.sponsor.all %} {{ sponsor.name }}
{% endfor %} {% else %} {% trans "(Optional) Not yet added" %} {% endif %}
{% trans "Course Syllabus" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with course_run.syllabus as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Primary Subject" %}
{% with course_run.subjects.0 as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Additional Subject" %}
{% with course_run.subjects.1 as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Additional Subject" %}
{% with course_run.subjects.2 as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Course Length (Weeks)" %}
{% with course_run.length as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Learner Testimonials" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with course_run.course.learner_testimonial as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "FAQ" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with course_run.course.faq as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Course About Video" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with course_run.course.video_link as value %} {% if value %} {{ value }} {% else %} {% trans "(Optional) Not yet added" %} {% endif %} {% endwith %}

{% trans "Enrollment Types" %}

{% trans "Seats" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% if course_run.wrapped_obj.seats.all %} {% for seat in course_run.wrapped_obj.seats.all %} {{ seat.type }} {% endfor %} {% else %} {% trans "(Required) Not yet added" %} {% endif %}
{% endblock %}