{% extends 'publisher/base.html' %}
{% load i18n %}
{% load staticfiles %}
{% block title %}
{% trans "Course Form" %}
{% endblock title %}
{% block page_content %}
{% if edit_mode %}
{% trans "Edit Course" %}
{% else %}
{% trans "Create New Course" %}
{% endif %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% blocktrans with strong_start='' strong_end='' trimmed %}
To create a parent course, enter the following information about the course and select {{ strong_start }}Create New Course{{ strong_end }}.
{% endblocktrans %}
{% trans "All of the following information is required." %}