{% 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_course_detail' 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 "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" %}
{{ parent_course.title }}
{{ course_form.team_admin }}
{% if parent_course.course_team_admin %}
{{ parent_course.course_team_admin.full_name }}
{% endif %}
{% trans "COURSE START DATE" %}
  • {% trans "Start on a Tuesday, Wednesday, or Thursday." %}
  • {% trans "Avoid major U.S. holidays." %}
  • {% trans "Specify a month, day, and year. If you are unsure of the exact date, specify a day that is close to the estimated start date. For example, if your course will start near the end of March, specify March 31." %}
{{ run_form.start }}
{% trans "PACING TYPE" %}

{% trans "Instructor-paced courses include individual assignments that have specific due dates before the course end date." %}

{% trans "Self-paced courses do not have individual assignments that have specific due dates before the course end date. All assignments are due on the course end date." %}

{{ run_form.pacing_type }}
{% 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." %}
{% if edit_mode %}{{ course_form.number.value }}{% endif %} {{ course_form.number }}

{% trans "About page information" %}

{% trans "COURSE END DATE" %}
{% trans "Specify a month, day, and year. If you are unsure of the exact date, specify a day that is close to the estimated end date. For example, if your course will end near the end of March, specify March 31." %}
{{ run_form.end }}
{% 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." %}
{{ seat_form.type }}
{{ seat_form.price }}
{% if seat_form.price.errors %}
{{ seat_form.price.errors|escape }}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}