{% 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 "Sequence Courses:" %}
  • {% 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 "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." %}
{{ form.number }}

{% trans "About page information" %}

{% trans "You can enter this information at any time before edX publishes the About page." %}

{% trans "You must enter this information both in this section and in Studio." %}

{% trans "BRIEF DESCRIPTION" %}
  • {% trans "Best Practices" %}
  • {% trans "Examples" %}

{% trans "An effective short description:" %}

  • {% trans "Contains 25–50 words." %}
  • {% trans "Functions as a tagline." %}
  • {% trans "Conveys compelling reasons to take the course." %}
  • {% trans "Follows SEO guidelines." %}
  • {% trans "Targets a global audience." %}

{% trans "The first MOOC to teach positive psychology. Learn science-based principles and practices for a happy, meaningful life." %}

{{ form.short_description }}

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

{% trans "FULL DESCRIPTION" %}
  • {% trans "Best Practices" %}
  • {% trans "Examples" %}

{% trans "An effective long description:" %}

  • {% trans "Contains 150–300 words." %}
  • {% trans "Is easy to skim." %}
  • {% trans "Uses bullet points instead of dense text paragraphs." %}
  • {% trans "Follows SEO guidelines." %}
  • {% trans "Targets a global audience." %}

{% trans "The first four lines are visible when the About page opens. Learners can select \"See More\" to view the full description." %}

{% trans "Want to learn computer programming, but unsure where to begin? This is the course for you! Scratch is the computer programming language that makes it easy and fun to create interactive stories, games and animations and share them online." %}

{% trans "This course is an introduction to computer science using the programming language Scratch, developed by MIT. Starting with the basics of using Scratch, the course will stretch your mind and challenge you. You will learn how to create amazing games, animated images and songs in just minutes with a simple “drag and drop” interface." %}

{% trans "No previous programming knowledge needed. Join us as you start your computer science journey." %}

{% trans "Skills-based example:" %} {% trans "Taught by instructors with decades of experience on Wall Street, this M&A course will equip analysts and associates with the skills they need to rise to employment in the M&A field. Additionally, directors and managers who have transitioned, or hope to transition, to M&A from other areas such as equities or fixed income can use this course to eliminate skill gaps." %}
{{ form.full_description }}

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

{% trans "EXPECTED LEARNINGS" %}
  • {% trans "Best Practices" %}
  • {% trans "Examples" %}
  • {% trans "The skills and knowledge learners will acquire in this course." %}
  • {% trans "Format each item as a bullet with four to ten words." %}
  • {% trans "Basic R Programming" %}
  • {% trans "An applied understanding of linear and logistic regression" %}
  • {% trans "Application of text analytics" %}
  • {% trans "Linear and integer optimization" %}
{{ form.expected_learnings }}
{% trans "SUBJECT FIELD" %}

{% trans "The subject of the course." %}

{% trans "You can select up to two subjects in addition to the primary subject. Only the primary subject appears on the About page." %}

{{ form.primary_subject }}
 
{{ form.secondary_subject }}
 
{{ form.tertiary_subject }}
{% trans "COURSE IMAGE" %}
{% trans "An eye-catching, colorful image that captures the essence of your course." %}
{% trans "Course Image Guidelines:" %}
  • {% trans "The image size must be 2120 x 1192 pixels." %}
  • {% trans "Each course in a sequence must have a unique image." %}
  • {% trans "The image cannot include text or headlines." %}
  • {% trans "You must have permission to use the image. Possible image sources include Flickr creative commons, Stock Vault, Stock XCHNG, and iStock Photo." %}
{{ form.image }} {{ form.image.errors }}
{% trans "PREREQUISITES" %}
  • {% trans "Best Practices" %}
  • {% trans "Examples" %}
  • {% trans "Maximum 200 characters." %}
  • {% trans "Specific knowledge learners must have to be successful in the course. If the course has no prerequisites, enter \"None\"." %}
  • {% trans "Secondary school (high school) algebra; basic mathematics concepts" %}
  • {% trans "Graduate-level understanding of Keynesian economics" %}
  • {% trans "Basic algebra" %}
{{ form.prerequisites }}

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

{% trans "SYLLABUS" %}
  • {% trans "Best Practices" %}
  • {% trans "Examples" %}
  • {% trans "A review of content covered in your course, organized by week or module." %}
  • {% trans "Focus on topics and content." %}
  • {% trans "Do not include detailed information about course logistics, such as grading, communication policies, and reading lists." %}
  • {% trans "Format items as either paragraphs or a bulleted list." %}
  • {% trans "Week 1: From Calculator to Computer" %}
    {%trans "Introduction to basic programming concepts, such as values and expressions, as well as making decisions when implementing algorithms and developing programs." %}
  • {% trans "Week 2: State Transformation" %}
    {%trans "Introduction to state transformation, including representation of data and programs as well as conditional repetition." %}
{{ form.syllabus }}
{% trans "LEVEL TYPE" %}
  • {% trans "Introductory - No prerequisites; a learner with some to all of a secondary school degree could complete the course." %}
  • {% trans "Intermediate - Basic prerequisites; learners need a secondary school degree or some university courses." %}
  • {% trans "Advanced - Significant prerequisites; the course is geared to third or fourth year university students or master's degree students." %}
{{ form.level_type }}
{% trans "Cancel" %}
{% endblock %} {% block extra_js %} {% endblock %}