{% extends 'base.html' %} {% load static %} {% block title %}Edit Profile — Parent Portal{% endblock %} {% block content %}

Edit Profile

Back
Update Contact Information
{% csrf_token %} {% if form.errors %}
Please correct the errors below.
{% endif %} {% for field in form %}
{{ field }} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}
Cancel
{% block extra_js %} {% endblock %} {% endblock %}