{% extends "customer/base_dashboard.html" %} {% load static %} {% block content %}

Profile

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% for field in form %}
{{ field }} {% if field.errors %}
{{ field.errors|striptags }}
{% endif %}
{% endfor %}
{% endblock %}