{% load i18n %} {% block content %}
{% trans "Title" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ object.title }}
{% trans "Number" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ object.number }}
{% trans "Course ID" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.lms_course_id as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Subtitle" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.short_description as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Organization" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ object.organization_key }}
{% trans "XSeries" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% if object.is_xseries %} {{ object.xseries_name }} {% else %} {% trans "(Optional) Not yet added" %} {% endif %}
{% trans "Start Date (time in UTC)" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ object.start|date:"Y-m-d" }}
{% trans "End Date (time in UTC)" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ object.end|date:"Y-m-d" }}
{% trans "Self Paced" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{{ object.pacing_type }}
{% trans "Staff" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% if not object.course_staff %} {% trans "(Required) Not yet added" %} {% else %} {% for obj in object.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 object.min_effort and object.max_effort %} {{ object.min_effort }} {% trans "to" %} {{ object.max_effort }} {% trans "hours per week" %} {% else %} {% trans "(Optional) Not yet added" %} {% endif %}
{% trans "Languages" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.language.name as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Video Transcript Languages" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.transcript_languages as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Level" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.level_type as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Full Description" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.full_description as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "What You'll Learn" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.expected_learnings as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Course Image" %}
{% if not object.course_image_url %} {% trans "(Required) Not yet added" %} {% else %} {% trans 'Course Image' %} {% endif %}
{% trans "Prerequisites" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.prerequisite as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Keywords" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.keywords as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Sponsors" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% if object.wrapped_obj.sponsor.all %} {% for sponsor in object.wrapped_obj.sponsor.all %} {{ sponsor.name }}
{% endfor %} {% else %} {% trans "(Optional) Not yet added" %} {% endif %}
{% trans "Course Syllabus" %}
{% with object.syllabus as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Primary Subject" %}
{% with object.subjects.0 as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Additional Subject" %}
{% with object.subjects.1 as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Additional Subject" %}
{% with object.subjects.2 as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Course Length (Weeks)" %}
{% with object.length as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Learner Testimonials" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.course.learner_testimonial as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "FAQ" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.course.faq as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Course About Video" %} {% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.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 object.wrapped_obj.seats.all %} {% for seat in object.wrapped_obj.seats.all %} {{ seat.type }} {% endfor %} {% else %} {% trans "(Required) Not yet added" %} {% endif %}
{% endblock %}