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

{% trans "Edit Course Run" %}

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}

{% blocktrans with strong_start='' strong_end='' trimmed %} To add or edit information about this course run, make changes on this page and then select {{ strong_start }}Update Course Run{{ strong_end }}. All required fields must be complete before this course run can be sent for review. {% endblocktrans %}

{% blocktrans with strong_start='' strong_end='' trimmed %} {{ strong_start }}Note:{{ strong_end }} If you edit course information after edX marketing has reviewed the course, you have to send the course to edX marketing for review again. {% endblocktrans %}

{% csrf_token %}
{% trans "COURSE START DATE" %}
  • {% trans "Note that times use UTC." %}
  • {% 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 }} {% if run_form.start.errors %}
{{ run_form.start.errors|escape }}
{% endif %}
{% trans "COURSE END DATE" %}
{% trans "Note that times use UTC. 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 "COURSE PACING" %}

{% 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 "STUDIO URL" %}

{% trans "The Studio URL for this course run." %}

{{ run_form.lms_course_id }} {% if not is_project_coordinator %}
{% trans "STUDIO URL" %} - {% if course_run.studio_url %} {{ course_run.lms_course_id }} {% else %} {% trans "Not yet created" %} {% endif %}
{% endif %}
{% trans "PROGRAM ASSOCIATION" %}
{% trans "If this course is part of a program, select the program type, and then enter the name of the program." %}
{{ run_form.is_micromasters}}
{% if run_form.micromasters_name.errors %}
{{ run_form.micromasters_name.errors|escape }}
{% endif %}
{{ run_form.is_professional_certificate}}
{% if run_form.professional_certificate_name.errors %}
{{ run_form.professional_certificate_name.errors|escape }}
{% endif %}
{{ run_form.is_xseries}}
{% if run_form.xseries_name.errors %}
{{ run_form.xseries_name.errors|escape }}
{% endif %}
{% 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 %}
{% trans "COURSE STAFF" %}
{% trans "The primary instructor or instructors for the course." %}
{{ run_form.staff }}
{% if publisher_add_instructor_feature %} {% endif %}
{% trans "ESTIMATED EFFORT" %}
{% trans "The number of hours per week the learner should expect to spend on the course. This may be a range." %}
{{ run_form.min_effort }} {% if run_form.min_effort.errors %} {{ run_form.min_effort.errors|escape }} {% endif %}
{{ run_form.max_effort }}
{% trans "LANGUAGE(S)" %}
{% trans "The languages available for videos, video transcripts, and other course content." %}
{{ run_form.language}} {{ run_form.transcript_languages}} {{ run_form.video_language}}
{% trans "LENGTH" %}
{% trans "The length of the course, in weeks, rounded to the nearest whole number." %}
{{ run_form.length}}
{% trans "Cancel" %}
{% if publisher_add_instructor_feature %} {% include "publisher/_add_instructor_popup.html" %} {% endif %} {% endblock %} {% block extra_js %} {% endblock %} {% block js_without_compress %} {{ run_form.media }} {% endblock %}