{% extends "layouts/base.html" %} {% block title %} Customers View {% endblock%} {%load static i18n%} {% block stylesheets %} {% endblock stylesheets %} {% block pageheader %}
{% endblock pageheader%} {% block content %}
{% csrf_token %} {% for field in form %}
{{field}}
{{ field.errors }}
{% endfor %}
{% endblock content %} {% block components %}
{% if form.errors %}
{{ form.errors.email }}
{% endif %}
{% endblock components %} {% block javascripts %} {% endblock javascripts %}