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

{% trans "Course Form" %}

{% csrf_token %}
{% for field in form %} {% include "publisher/form_field.html" %} {% endfor %}
{% if object.id %} {% trans "Add Course Run" %} {% endif %} {% include 'comments/comments_list.html' %} {% include 'comments/add_auth_comments.html' %}
{% endblock %}