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

New Course

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

{% trans "Base information" %}

{% trans "INSTITUTION INFORMATION" %}
{% trans "Please choose the school that will be providing the course. Once chosen then you can select an administrator for the studio shell." %}
{% if course_form.organization.field.queryset.all.count > 1 %} {{ course_form.organization }} {% else %} {% with course_form.organization.field.queryset|first as organization %} {% endwith %} {% endif %} {{ course_form.team_admin }}
{% trans "Course Title" %}
  • {% trans "Best Practices" %}
  • {% trans "Example" %}

{% trans "Concise 70 characters maximum; < 50 chars. recommended." %}

{% trans "Descriptive - clearly indicates what the course is about." %}

{% trans "SEO-optimized and targeted to a global audience." %}

{% trans 'If the course falls in a sequence, our titling convention is: "Course Title: Subtitle"' %}

{% trans "English Grammar and Essay Writing Sequence Courses:" %}
  • {% trans "Introduction to Statistics" %}
  • {% trans "Statistics: Inference" %}
  • {% trans "Statistics: Probability" %}
{{ course_form.title }}
{{ run_form.contacted_partner_manager}}
{{ run_form.target_content}}
{% trans "Start Date" %}
{% trans "Start on a weekday (preferably Tuesday, Wednesday, or Thursday) and avoid major U.S. holidays for best access to edX staff." %} {% trans "Approximate dates are acceptable; If you are unable to give an exact date, please identify a month in which the course will be offered." %}
{{ run_form.start }}
{% trans "Pacing Type" %}
{% trans "Will your course be open to students at the same time as it is announced?" %}
{{ run_form.pacing_type }}
{% trans "Course Number" %}
{% trans 'Courses split into several modules can be denoted by adding .1, .2, etc. at the end of the course number before the “x”' %} {% trans 'No special html characters, accents, spaces, dashes, or underscores 10 character limit' %}
{{ course_form.number }}

{% trans "About page information" %}

{% trans "End Date" %}
{% trans "The date when this self-paced course run will end, replaced by an updated version of the course" %}
{{ run_form.end }}
{% trans "Seat Type" %}
{% trans "The date when this self-paced course run will end, replaced by an updated version of the course" %}
{{ seat_form.type}}
{{ seat_form.price}}
{% if seat_form.price.errors %}
{{ seat_form.price.errors|escape }}
{% endif %}
{% 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" %}
{{ course_form.short_description }}
{% 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' %}
{{ course_form.full_description }}
{% trans "EXPECTED LEARNINGS" %}
  • {% trans 'Answer to the question: "What will you learn from this course?"' %}
  • {% trans "bulleted items, approximately 4-10 words per bullet" %}
{{ course_form.expected_learnings }}
{% trans "COURSE STAFF" %}
  • {% trans "If there is more than one instructor, please indicate the order in which the instructors should be listed" %}
  • {% trans "Limited to the primary instructors a learner will encounter in videos" %}
{{ run_form.staff }}
{% trans "KEYWORDS" %}
{% trans "Some instructions here???" %}
{{ course_form.keywords}} {{ course_form.is_seo_review}}
{% 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." %}
{{ course_form.primary_subject }}
 
{{ course_form.secondary_subject }}
 
{{ course_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" %}
{{ course_form.image }}
{% 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" %}
{{ course_form.prerequisites }}
{% trans "ESTIMATED EFFORT" %}
  • {% trans "Number of hours per week the learner should expect to spend on the course to be successful" %}
  • {% trans "Should be realistic, and can be a range" %}
{{ run_form.min_effort }}
{{ run_form.min_effort }}
{% trans "LANGUAGE(S)" %}
  • {% trans "Course content (navigation and course content excluding videos)" %}
  • {% trans "Videos (language spoken in course videos)" %}
  • {% trans "Video transcript (video caption language)" %}
{{ run_form.language}} {{ run_form.transcript_languages}} {{ run_form.video_language}}
{% trans "LENGTH" %}
  • {% trans "Length of course, in number of weeks" %}
  • {% trans "If the time between start/end dates is not exact, ex: 8.5 weeks, " %} {% trans "indicate whether the course should be listed as 8 weeks or 9 weeks." %}
{{ run_form.length}}
{% 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" %}
{{ course_form.level_type }}
{% endblock %} {% block extra_js %} {% endblock %}