{% 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 "Sub Title" %}
{% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.short_description as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}
{% trans "School" %}
{% include "publisher/course_run_detail/_clipboard.html" %}
{{ object.organization_key }}
{% trans "Subject" %}
{% include "publisher/course_run_detail/_clipboard.html" %}
{% if object.subjects.all %}
{% for subject in object.subjects %}{{ subject.name }}{% endfor %}
{% else %}
{% trans "(Required) Not yet added" %}
{% endif %}
{% 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" %}
{% include "publisher/course_run_detail/_clipboard.html" %}
{{ object.start|date:"Y-m-d" }}
{% trans "End Date" %}
{% 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 %}
{{ 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 Translations" %}
{% 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 "About this Course" %}
{% 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 "Prerequisite" %}
{% 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 "Price" %}
{% include "publisher/course_run_detail/_clipboard.html" %}
{% with object.verified_seat_price as field %}
{% include "publisher/_render_optional_field.html" %}
{% endwith %}
{% trans "Enrollments" %}
{% 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 %}