{% load i18n %}
{% trans "Studio URL" %}
{% if course_run.studio_url %} {{ course_run.lms_course_id }} {% else %} {% trans "(Required) To be added by edX" %} {% endif %}
{% trans "Start Date (time in UTC)" %}
{{ course_run.start }}
{% trans "End Date (time in UTC)" %}
{{ course_run.end }}
{% if is_seat_version %}
{% trans "Enrollment Track" %}
{{ course_run.course_type }}
{% if course_run.seat_price %}
{% trans "Certificate Price" %}
${{ course_run.seat_price }}
{% endif %} {% if course_run.credit_seat_price %}
{% trans "Credit Price" %}
${{ course_run.credit_seat_price }}
{% endif %} {% endif %}
{% trans "Course Staff" %}
{% 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" %}
{% if course_run.min_effort and course_run.max_effort %} {{ course_run.min_effort }}-{{ 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 "Course Content Language" %}
{% with course_run.language.name as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Video Transcript Language" %}
{% with course_run.transcript_languages as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Course Video Language" %}
{% with course_run.video_language as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "Course Length (Weeks)" %}
{% with course_run.length as field %} {% include "publisher/_render_required_field.html" %} {% endwith %}
{% trans "MicroMasters Program Name" %}
{% with course_run.micromasters_name as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "XSeries Program Name" %}
{% with course_run.xseries_name as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}
{% trans "Professional Certificate Program Name" %}
{% with course_run.professional_certificate_name as field %} {% include "publisher/_render_optional_field.html" %} {% endwith %}