1
{% extends 'base.html' %}
2
{% block title %}
3
Update Address
4
{% endblock %}
5
{% block content %}
6
Please correct name and address
7
<form action="" method=post>
8
{{form.as_p}}
9
<input type=submit value=Submit />
10
</form>
11