{% extends 'publisher/base.html' %} {% load i18n %} {% load static %} {% block title %} {% trans "Create New Course" %} {% endblock title %} {% block page_content %}

{% trans "Create New Course" %}

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %}
{% trans "COURSE TITLE" %} * Required
  • {% trans "Best Practices" %}
  • {% trans "Examples" %}

{% trans "Maximum 70 characters. Recommended 50 or fewer characters." %}

{% trans "An effective course title:" %}

  • {% trans "Clearly indicates the course subject matter." %}
  • {% trans "Follows search engine optimization (SEO) guidelines." %}
  • {% trans "Targets a global audience." %}

{% trans "If the course is part of a sequence, include both sequence and course information as \"Sequence: Course\"." %}

{% trans "Single Courses" %}
  • {% trans "English Grammar and Essay Writing" %}
{% trans "Sequence Courses" %}
  • {% trans "Statistics: Inference" %}
  • {% trans "Statistics: Probability" %}
{% if course_form.organization.field.queryset.all.count > 1 %} {{ course_form.organization }} {% else %} {% with course_form.organization.field.queryset|first as organization %} {{ organization.name }} {% endwith %} {% endif %} {{ course_form.team_admin }} {{ course_form.title }} {% if course_form.title.errors %}
{{ course_form.title.errors|escape }}
{% endif %}
{% trans "COURSE NUMBER" %} * Required
  • {% trans "Best Practices" %}
  • {% trans "Examples" %}
  • {% trans "Maximum 50 characters. Characters can be letters, numbers, periods, underscores or hyphens." %}
  • {% trans "If a course consists of several modules, the course number can have an ending such as .1x or .2x." %}
  • {% trans "CS002x" %}
  • {% trans "BIO1.1x; BIO1.2x etc." %}
{{ course_form.number }} {% if course_form.number.errors %}
{{ course_form.number.errors|escape }}
{% endif %}
{% if entitlement_form %}
{% trans "CERTIFICATE TYPE AND PRICE" %}
{% trans "If the course offers a verified or professional education certificate, select the certificate type and enter the price for the certificate." %}
{{ entitlement_form.mode }}
{{ entitlement_form.price }}
{% if entitlement_form.price.errors %}
{{ entitlement_form.price.errors|escape }}
{% endif %}
{% endif %}
{% trans "Cancel" %}
{% endblock %} {% block extra_js %} {% endblock %}