{% extends "lms/templates/lms_base.html" %} {% block title %} {{ course.title if course and course.title else _("New Course") }} {% endblock %} {% block page_content %}
{{ Header() }}
{{ CreateCourse() }}
{% endblock %} {% macro Header() %}
{{ _("Course Details") }}
{% if course.name %} {{ _("Back to Course") }} {{ _("Course Outline") }} {% endif %}
{% endmacro %} {% macro CreateCourse() %}
{{ _("Title") }}
{{ _("Something Short and Concise") }}
{{ _("Short Introduction") }}
{{ _("A one line brief description") }}
{{ _("Course Description") }}
{{ _("Add a detailed description to provide more information about your course.") }}
{% if course.description %}
{{ course.description }}
{% endif %}
{{ _("Preview Video ID") }}
{{ _("Enter the Preview Video ID. The ID is the part of the URL after watch?v=. For example, if the URL is https://www.youtube.com/watch?v=QH2-TGUlwu4, the ID is QH2-TGUlwu4") }}
{{ _("Tags") }}
{{ _("Tags act as search keywords. They also appear on the Course Card and Course Detail page") }}
{% for tag in get_tags(course.name) %} {% endfor %}
{% if is_moderator %}
{% endif %}
{{ _("Course Image") }}
{{ _("Image will appear on the Course Card") }}
{{ _("Course Price") }}
{{ _("The price of this course.") }}
{{ _("Currency") }}
{{ _("The currency in which users will pay for this course.") }}
{{ _("Instructor") }}
{{ widgets.Avatar(member=member, avatar_class="avatar-medium") }} {{ member.full_name }}
{% endmacro %} {%- block script %} {{ super() }} {{ include_script('controls.bundle.js') }} {% endblock %}