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

{% trans "New Course Run" %}

{% url 'publisher:publisher_courses_readonly' parent_course.id as course_url %} {% with link_start='' link_end='' %} {% blocktrans %} The fields below will only affect this new course run. If you feel the need edit information from the parent course then you may do so on the {{ link_start }}{{ course_url }}{{ link_middle }}parent course for this run{{ link_end }}. {% endblocktrans %} {% endwith %}

{% include 'alert_messages.html' %}
{% csrf_token %}

{% trans "Studio instance information" %}

{% blocktrans %} The information in this section is required to create a course studio instance. You must fill all required information but are welcome to come back and enter the rest of the information when you are ready to announce the course, or you can do it all at once if you are ready to do so. {% endblocktrans%}

{% trans "COURSE TITLE" %}
  • {% trans "Best Practices" %}
  • {% trans "Example" %}

{% trans "Concise 70 characters maximum; < 50 chars. recommended." %}

{% trans "Descriptive - clearly indicates what the course is about." %}

{% trans "SEO-optimized and targeted to a global audience." %}

{% trans 'If the course falls in a sequence, our titling convention is: "Course Title: Subtitle"' %}

"{% trans "English Grammar and Essay Writing" %}"

{% trans "Sequence Courses:" %}

"{% trans "Introduction to Statistics" %}"

"{% trans "Statistics: Inference" %}"

"{% trans "Statistics: Probability" %}"

{{ parent_course.title }}
{{ course_form.team_admin }}
{% if parent_course.team_admin %}
{{ parent_course.team_admin.username }}
{% endif %}
{% trans "COURSE START DATE" %}
{% blocktrans %} Start on a weekday (preferably Tuesday, Wednesday, or Thursday) and avoid major U.S. holidays for best access to edX staff. {% endblocktrans %}
{% blocktrans %} Approximate dates are acceptable; If you are unable to give an exact date, please identify a month in which the course will be offered. {% endblocktrans %}
{{ run_form.start }}
{% trans "Will your course be open to students at the same time as it is announced?" %}
{{ run_form.is_self_paced }} {{ run_form.is_self_paced.label_tag }}
{% trans "COURSE NUMBER" %}
  • {% trans "Best Practices" %}
  • {% trans "Example" %}
{% blocktrans %} Courses split into several modules can be denoted by adding .1, .2, etc. at the end of the course number before the “x” No special html characters, accents, spaces, dashes, or underscores 10 character limit {% endblocktrans %}

{% trans "Example:" %}

“CS002x”

“BIO1.1x”, “BIO1.2x”, {% trans "etc." %}

{{ course_form.number }}

{% trans "About page information" %}

{% trans "COURSE END DATE" %}
{% trans "The date when this self-paced course run will end, replaced by an updated version of the course" %}
{{ run_form.end }}
{% trans "CERTIFICATE TYPE AND PRICE" %}
{% trans "If Verified or Professional Ed, indicate certificate price in US dollars (minimum of $49)" %}
{{ seat_form.type}}
{{ seat_form.price}}
{% endblock %} {% block extra_js %} {% endblock %}