templates/update_address.html
author nishanth
Fri, 03 Sep 2010 16:20:28 +0530
branchanoop
changeset 240 b29465f479ea
child 243 011eac43bea3
permissions -rw-r--r--
created template for the view
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
240
b29465f479ea created template for the view
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
b29465f479ea created template for the view
nishanth
parents:
diff changeset
     2
{% block title %}
b29465f479ea created template for the view
nishanth
parents:
diff changeset
     3
Update Address
b29465f479ea created template for the view
nishanth
parents:
diff changeset
     4
{% endblock %}
b29465f479ea created template for the view
nishanth
parents:
diff changeset
     5
{% block content %}
b29465f479ea created template for the view
nishanth
parents:
diff changeset
     6
Please correct name and address
b29465f479ea created template for the view
nishanth
parents:
diff changeset
     7
<form action="" method=post>
b29465f479ea created template for the view
nishanth
parents:
diff changeset
     8
{{form.as_p}}
b29465f479ea created template for the view
nishanth
parents:
diff changeset
     9
<input type=submit value=Submit />
b29465f479ea created template for the view
nishanth
parents:
diff changeset
    10
</form>
b29465f479ea created template for the view
nishanth
parents:
diff changeset
    11
{% endblock %}