{% extends 'base.html' %} {% block title %} Edit Widget User {% endblock %} {% block content %}

Edit Widget User:

{{ form.non_field_errors }} {% for field in form %} {% if field.errors %}

{{ field.label }} has the following errors:

{% endif %} {% endfor %}
{% csrf_token %} {{ form.as_p }}
{% endblock %}