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

{% trans "Edit Course" %}

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

{% trans "To add or edit information about this course, make changes on this page and then select" %} {% trans "Update Course." %} {% trans "All required fields must be complete before this course can be sent for review." %}

{% csrf_token %}
{% trans "COURSE TITLE" %}
x
  • {% 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 "255 character limit, including spaces." %}

{% if form.title.errors %}
{{ form.title.errors|escape }}
{% endif %}
{% 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" %}
{{ form.number }}
{% trans "SHORT DESCRIPTION" %}
x
  • {% 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 "255 character limit, including spaces." %}

{% if form.short_description.errors %}
{{ form.short_description.errors|escape }}
{% endif %}
{% trans "LONG DESCRIPTION" %}
x
  • {% 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 "Content-based example:" %}

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

{% if form.full_description.errors %}
{{ form.full_description.errors|escape }}
{% endif %}
{% trans "WHAT YOU WILL LEARN" %}
x
  • {% 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 "2500 character limit, including spaces." %}

{% if form.expected_learnings.errors %}
{{ form.expected_learnings.errors|escape }}
{% endif %}
{% 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 }} {% if form.image.errors %}
{{ form.image.errors|escape }}
{% endif %}
{% trans "PREREQUISITES" %}
x
  • {% 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." %}

{% if form.prerequisites.errors %}
{{ form.prerequisites.errors|escape }}
{% endif %}
{% trans "SYLLABUS" %}
x
  • {% 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 "2500 character limit, including spaces." %}

{% if form.syllabus.errors %}
{{ form.syllabus.errors|escape }}
{% endif %}
{% trans "LEVEL" %}
  • {% trans "Introductory - No prerequisites; a learner who has completed some or all secondary school could complete the course." %}
  • {% trans "Intermediate - Basic prerequisites; learners need to complete secondary school 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 }}
{{ form.faq.label }}

{% trans "Any frequently asked questions and the answers to those questions." %}

x
{{ form.faq }}

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

{% if form.faq.errors %}
{{ form.faq.errors|escape }}
{% endif %}
{% if is_internal_user %}
{{ form.video_link.label|upper }}
  • {% trans "Best Practices" %}
  • {% trans "Examples" %}

{%trans "The About video should excite and entice potential students to take your course. Think of it as a movie trailer or TV show promotion. The video should be compelling, and exhibit the instructor’s personality." %}
{%trans "The ideal length is 30-90 seconds (learners typically watch an average of 30 seconds)." %}
{%trans "The About video should be produced and edited, using elements such as graphics and stock footage." %}

{% trans "The About video should answer these key questions." %}

  • {% trans "Why should a learner register?" %}
  • {% trans "What topics and concepts are covered?" %}
  • {% trans "Who is teaching the course?" %}
  • {% trans "What institution is delivering the course?" %}

{% trans "Naming specifications:" %}

{% trans "Technical specifications:" %}

  • {% trans "Codec: H.264" %}
  • {% trans "Container: .mp4" %}
  • {% trans "Resolution: 1920x1080" %}
  • {% trans "Frame rate: 29.97 fps" %}
  • {% trans "Aspect: 1.0" %}
  • {% trans "Bitrate: 5Mbps VBR" %}
  • {% trans "Audio codec: AAC 44.1KHz/192 Kbps" %}

{%trans "Visit edX’s YouTube channel for examples of other About videos:" %} www.youtube.com/user/EdXOnline

{{ form.video_link }}
{% else %} {{ form.video_link }} {% endif %}
{{ form.learner_testimonial.label|upper }}
x
  • {% trans "Best Practices" %}
  • {% trans "Examples" %}
  • {% trans "A quote from a learner in the course, demonstrating the value of taking the course." %}
  • {% trans "Should be no more than 25-50 words in length." %}

{%trans "“Brilliant course! It's definitely the best introduction to electronics in the world! Interesting material, clean explanations, well prepared quizzes, challenging homeworks and fun labs.” – Previous Student" %}

{{ form.learner_testimonial }}

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

{% if form.learner_testimonial.errors %}
{{ form.learner_testimonial.errors|escape }}
{% endif %}
{% trans "Cancel" %}
{% endblock %} {{% block extra_js %} {% endblock %}