{% extends 'templates/base.html' %} {% load static %} {% block stylesheets %} {% endblock %} {% block title %}Add Widget User{% endblock %} {% block header %}

Add a new Widget user:

{% endblock %} {% block body %} {% block content %} {{ 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 %} {% endblock %}