{% load url from future %}
×

Add a new course to KarmaNotes

{% csrf_token %} {% if course_form.non_field_errors %}
    {% for error in course_form.non_field_errors %}
  • {% endfor %}
{% endif %} {% for form in course_form.get_forms.itervalues %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {% endfor %} {% for hidden in course_form.hidden_fields %} {{ hidden }} {% endfor %}
{% with course_form.get_forms.department.school as field %} {{ field.errors|safe }} {{ field }} {% endwith %}
{% with course_form.get_forms.department.name as field %} {{ field.errors|safe }} {{ field }} {% endwith %}
{% with course_form.get_forms.professor.name as field %} {{ field.errors|safe }} {{ field }} {% endwith %}
{% with course_form.get_forms.professor.email as field %} {{ field.errors|safe }} {{ field }} {% endwith %}
{% with course_form.name as field %} {{ field.errors|safe }} {{ field }} {% endwith %}
{% with course_form.url as field %} {{ field.errors|safe }} {{ field }} {% endwith %}
{% with course_form.instruction_url as field %} {{ field.errors|safe }} {{ field }} {% endwith %}