{% trans "Organization Name" %}
{{ object.organizations.first }}
{% trans "Course Team Admin" %}
{% firstof object.course_team_admin.full_name object.course_team_admin.username %}
{% trans "Course Title" %}
{{ object.course_title }}
{% trans "Course Number" %}
{{ object.number }}
{% trans "Enrollment Track" %}
{% with object.entitlements.first.mode as field %}
{% include "publisher/_render_optional_field.html" %}
{% endwith %}
{% trans "Certificate Price" %}
{% with object.entitlements.first.price as field %}
{% include "publisher/_render_optional_field.html" %}
{% endwith %}
{% trans "Short Description" %}
{% with object.course_short_description as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}
{% trans "Long Description" %}
{% with object.course_full_description as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}
{% trans "What You Will Learn" %}
{% with object.expected_learnings as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}
{% trans "Primary Subject" %}
{% with object.primary_subject as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}
{% trans "Additional Subject" %}
{% with object.secondary_subject as field %}
{% include "publisher/_render_optional_field.html" %}
{% endwith %}
{% trans "Additional Subject" %}
{% with object.tertiary_subject as field %}
{% include "publisher/_render_optional_field.html" %}
{% endwith %}
{% trans "Course Image" %}
{% if object.image %}
{% trans "Prerequisites" %}
{% with object.prerequisites 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 %}
{% trans "Learner Testimonials" %}
{% with object.learner_testimonial as field %}
{% include "publisher/_render_optional_field.html" %}
{% endwith %}
{% trans "FAQ" %}
{% with object.faq as field %}
{% include "publisher/_render_optional_field.html" %}
{% endwith %}
{% trans "Syllabus" %}
{% with object.syllabus as field %}
{% include "publisher/_render_optional_field.html" %}
{% endwith %}
{% trans "About Video Link" %}
{% with object.video_link as value %}
{% if value %}
{{ value }}
{% else %}
{% trans "(Optional) Not yet added" %}
{% endif %}
{% endwith %}