{% if object.studio_url %}
{{ object.lms_course_id }}
{% else %}
{% trans "(Required) Not yet added" %}
{% endif %}
{% trans "Start Date" %}
{{ object.start }}
{% trans "End Date" %}
{{ object.end }}
{% trans "Certificate type" %}
{{ object.course_type }}
{% if object.verified_seat_price %}
{% trans "Certificate Price" %}
${{ object.verified_seat_price }}
{% endif %}
{% trans "Brief Description" %}
{% with object.short_description as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}
{% trans "Full Description" %}
{% with object.full_description as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}
{% trans "Expected Learnings" %}
{% with object.expected_learnings as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}
{% trans "Course Staff" %}
{% 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 "Primary Subject" %}
{% with object.subjects.0 as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}
{% trans "Secondary Subject" %}
{% with object.subjects.1 as field %}
{% include "publisher/_render_optional_field.html" %}
{% endwith %}
{% trans "Tertiary Subject" %}
{% with object.subjects.2 as field %}
{% include "publisher/_render_optional_field.html" %}
{% endwith %}
{% trans "Course Image" %}
{% if not object.course_image %}
{% trans "(Required) Not yet added" %}
{% else %}
{% endif %}
{% trans "Prerequisites" %}
{% with object.prerequisites as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}
{% trans "Estimated Effort" %}
{% if object.min_effort and object.max_effort %}
{{ object.min_effort }}-{{ object.max_effort }} {% trans "hours per week" %}
{% else %}
{% trans "(Optional) Not yet added" %}
{% endif %}
{% trans "Course content language" %}
{% with object.language.name as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}
{% trans "Video Language Transcript" %}
{% with object.transcript_language as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}
{% trans "Language spoken in course videos" %}
{% with object.video_language 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 "Course Level" %}
{% with object.level_type as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}