pytask/templates/user/my_profile.html
author anoop
Mon, 01 Feb 2010 14:14:04 +0530
changeset 17 9ca9f98af0eb
child 21 3e676fa948c4
permissions -rw-r--r--
added files edit_profile.html and my_profile.html.
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 %}
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     3
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     4
{% if edit_profile %}
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     5
    <a href="/user/edit/">edit my profile</a>
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     6
{% endif %}
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     7
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     8
<br>
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
     9
{{ view_profile_form.as_p }}
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
    10
9ca9f98af0eb added files edit_profile.html and my_profile.html.
anoop
parents:
diff changeset
    11
{% endblock %}