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

{% trans "Edit Course" %}

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

{% trans "The information in the Studio Instance section is required before edX can create a Studio instance for the course run." %}

{% trans "The information in the About Page section is not required before edX creates a Studio instance for the course run. You can return to this page and enter this information later. This information is required before edX announces the course." %}

{% csrf_token %}

{% trans "Studio Instance" %}

{% trans "This information is required before edX can create a Studio instance for a course run." %}

{% 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 "Project Management Life Cycle" %}”


{% trans "Sequence Courses:" %}

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

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

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

{% if form.organization.field.queryset.all.count > 1 %} {{ form.organization }} {% else %} {% with form.organization.field.queryset|first as organization %} {{ organization.name }} {% endwith %} {% endif %} {{ form.team_admin }} {{ form.title }}
{% trans "COURSE NUMBER" %}

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

{{ form.number }}

{% trans "About page information" %}

{% trans "BRIEF DESCRIPTION" %}
  • {% trans "Reads as a tag line - a short, engaging description for students browsing course listings" %}
  • {% trans "Conveys why someone should take the course" %}
  • {% trans "SEO optimized and targeted to a global audience" %}
{{ form.short_description }}

{% trans "140 character limit, including spaces." %}

{% trans "FULL DESCRIPTION" %}
{% trans "Summarized description of course content" %}
  • {% trans "Describe why a learner should take this course" %}
  • {% trans "SEO optimized and targeted to a global audience" %}
  • {% trans "Text should be easily scannable, using bullet points to highlight instead of long, dense text paragraphs" %}
  • {% trans "Note: the first 4-5 lines will be visible to the learner immediately upon clicking the page;" %} {% trans 'additional text will be hidden yet available via "See More" clickable text under the first 4-5 lines' %}
{{ form.full_description }}

{% trans "2500 character limit, including spaces." %}

{% trans "EXPECTED LEARNINGS" %}
  • {% trans 'Answer to the question: "What will you learn from this course?"' %}
  • {% trans "bulleted items, approximately 4-10 words per bullet" %}
{{ form.expected_learnings }}
{% trans "SUBJECT FIELD" %}
{% trans "Only one primary subject will appear on the About Page; please select one primary subject and a maximum of two additional subject areas for search." %}
{{ form.primary_subject }}
 
{{ form.secondary_subject }}
 
{{ form.tertiary_subject }}
{% trans "COURSE IMAGE" %}
{% trans "Select an eye-catching, colorful image that captures the content and essence of your course" %}
  • {% trans "Do not include text or headlines" %}
  • {% trans "Choose an image that you have permission to use." %} {% trans "This can be a stock photo (try Flickr creative commons, " %} {% trans "Stock Vault, Stock XCHNG, iStock Photo) or an image custom designed for your course" %}
  • {% trans "Sequenced courses should each have a unique image" %}
  • {% trans "Size: 2120 x 1192 pixels" %}
{{ form.image }} {{ form.image.errors }}
{% trans "PREREQUISITES" %}
  • {% trans "List concepts and level (basic, advanced, undergraduate, graduate) students should be familiar with" %}
  • {% trans 'If there are no prerequisites, please list "None."' %}
  • {% trans "200 character limit, including spaces" %}
{{ form.prerequisites }}

{% trans "200 character limit, including spaces." %}

{% trans "SYLLABUS" %}
{{ form.syllabus }}
{% trans "LEVEL TYPE" %}
  • {% trans "Introductory - No prerequisites; an individual with some to all of a secondary school degree could complete" %}
  • {% trans "Intermediate - Basic prerequisites; a secondary school degree likely required to be successful as well as some university" %}
  • {% trans "Advanced - Significant number of prerequisites required; course geared to 3rd or 4th year university student or a masters degree student" %}
{{ form.level_type }}
{% trans "Cancel" %}
{% endblock %} {% block extra_js %} {% endblock %}