# HG changeset patch # User anoop # Date 1265013844 -19800 # Node ID 9ca9f98af0eba1c989a5d0784b1e03316023853e # Parent d57e63325759b257e210cf7d7ce78ff912ff747d added files edit_profile.html and my_profile.html. diff -r d57e63325759 -r 9ca9f98af0eb pytask/templates/user/edit_profile.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pytask/templates/user/edit_profile.html Mon Feb 01 14:14:04 2010 +0530 @@ -0,0 +1,7 @@ +{% extends 'base.html' %} +{% block content %} +
+{{ edit_profile_form.as_p }} + +
+{% endblock %} diff -r d57e63325759 -r 9ca9f98af0eb pytask/templates/user/my_profile.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pytask/templates/user/my_profile.html Mon Feb 01 14:14:04 2010 +0530 @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% block content %} + +{% if edit_profile %} + edit my profile +{% endif %} + +
+{{ view_profile_form.as_p }} + +{% endblock %}