{% extends 'website/templates/base.html' %} {% load static %} {% load widget_tweaks %} {% block content %}

Create a new question . . .


{% csrf_token %} {% with WIDGET_ERROR_CLASS='field_error' %}

Please enter the tutorial details.

{{ form.category.errors }}
{% render_field form.category class+="form-control category"%}

Please enter your question details.

{{ form.title.errors }}
{% render_field form.title class+="form-control title" %}
{{ form.body.errors }}
{% render_field form.body class+="form-control body" %}
{% endwith %}
{% endblock %} {% block javascript %} {% endblock %}