{% 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" %}
  • {% 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 }}
{% trans "COURSE NUMBER" %}
  • {% trans "Best Practices" %}
  • {% trans "Examples" %}
  • {% trans "Maximum 10 characters. Characters can be letters, numbers, or periods." %}
  • {% 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 }}

{% blocktrans with strong_start='' strong_end='' trimmed %} After you select {{ strong_start }}Create New Course{{ strong_end }}, pages for the course and for one course run are created in Publisher. You can add About page information to the course and course run pages at any time. {% endblocktrans %}

{% trans "Additionally, edX will create a URL for the course in Studio. When the Studio URL is ready, you will receive an email notification. You can then go to Studio and enter content for the course." %}

{% trans "Cancel" %}
{% endblock %} {% block extra_js %} {% endblock %}