{% trans "Organization Name" %}
{{ object.organizations.first }}
{% trans "Course Team Admin" %}
{{ object.course_team_admin.full_name }}
{% trans "Course Title" %}
{{ object.title }}
{% trans "Course Number" %}
{{ object.number }}
{% trans "Short Description" %}
{% with object.short_description as field %}
{% include "publisher/_render_required_field.html" %}
{% endwith %}
{% trans "Long Description" %}
{% with object.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.course_image_url %}
{% trans "Prerequisites" %}
{% with object.prerequisites as field %}
{% include "publisher/_render_required_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 %}