templates/update_address.html
author nishanth
Fri, 03 Sep 2010 16:38:02 +0530
branchanoop
changeset 243 011eac43bea3
parent 240 b29465f479ea
permissions -rw-r--r--
created the new template for saying address is updated.
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 %}
243
011eac43bea3 created the new template for saying address is updated.
nishanth
parents: 240
diff changeset
     6
Please correct your name and address
240
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 %}