pytask/templates/user/edit_profile.html
author anoop
Mon, 01 Feb 2010 17:30:30 +0530
changeset 22 943a35c14cf7
parent 17 9ca9f98af0eb
permissions -rw-r--r--
added browse users functionality, added user/browse.html, fixed view my profile template.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     1
{% extends 'base.html' %}
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     2
{% block content %}
22
943a35c14cf7 added browse users functionality, added user/browse.html, fixed view my profile template.
anoop
parents: 17
diff changeset
     3
    <form action="/user/edit/" method="post">
943a35c14cf7 added browse users functionality, added user/browse.html, fixed view my profile template.
anoop
parents: 17
diff changeset
     4
        {{ edit_profile_form.as_p }}
943a35c14cf7 added browse users functionality, added user/browse.html, fixed view my profile template.
anoop
parents: 17
diff changeset
     5
    <input type="submit" value="Apply Changes" />
943a35c14cf7 added browse users functionality, added user/browse.html, fixed view my profile template.
anoop
parents: 17
diff changeset
     6
    </form>
17
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     7
{% endblock %}