{% load url from future %}
{% csrf_token %} {% for error in course_form.non_field_errors %}
{{ error }}
{% endfor %}
School {% for error in course_form.school.errors %} {{ error }} {% endfor %}
Course Name: {% if course_form.name.errors %} {{ course_form.name.errors }} {% endif %}
Do not fill in this field: {% for error in honeypot_errors %} {{ error }} {% endfor %}
Instructor Name: {% for error in course_form.instructor_name.errors %} {{ error }} {% endfor %}
Instructor Email: {% for error in course_form.instructor_email.errors %} {{ error }} {% endfor %}
Course url: {% for error in course_form.url.errors %} {{ error }} {% endfor %}
Looks like this course already exists on KarmaNotes! Go To Existing Course