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

{% trans "New Course Run" %}

* Required

{% blocktrans %} The information on this page is based on the latest published course run, if a published course run exists. {% endblocktrans %}

{% blocktrans %} When you create a course run, Publisher immediately creates a page for the course run in Publisher, and the edX team creates a Studio URL for the course run. You will receive an email message when edX has created the Studio URL. {% endblocktrans %}

{% include 'alert_messages.html' %}
{% csrf_token %}
{% if from_dashboard %}
{% trans "FIND COURSE" %}

{% trans "Enter the name of the course for which you want to create a course run." %}

{% url 'publisher:publisher_courses_new' as new_course_url %} {% blocktrans with link_start='' link_end='' %} If your course cannot be found, make sure the course name is correct, or {{ link_start }}{{ new_course_url }}{{ link_middle }}create a new course{{ link_end }}. {% endblocktrans%}

{{ course_form.course }} {% if course_form.course.errors %}
{{ course_form.course.errors.as_text }}
{% endif %}
{% 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 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 }}
{{ seat_form.credit_price }}
{% if seat_form.price.errors %}
{{ seat_form.price.errors|escape }}
{% endif %}
{% url 'publisher:publisher_course_detail' parent_course.id as course_url %} {% trans "Cancel" %}
{% endblock %} {% block extra_js %} {% endblock %} {% block js_without_compress %} {{ course_form.media }} {% endblock %}