{% load url from future %}
{% csrf_token %}
{{ course_form.non_field.errors }}
School {% if course_form.school.errors %} * there was an error with this field {% endif %}
Course Name: {% if course_form.name.errors %} * there was an error with this field {% endif %}
Instructor Name: {% if course_form.instructor_name.errors %} * there was an error with this field {% endif %}
Instructor Email: {% if course_form.instructor_email.errors %} * there was an error with this field {% endif %}
Course url: {% if course_form.url.errors %} * there was an error with this field {% endif %}