From 54f307faa17ac411336c261a7acc57edb6df7d1a Mon Sep 17 00:00:00 2001 From: anoop Date: Thu, 4 Feb 2010 23:13:03 +0530 Subject: added files edit_profile.html and my_profile.html. --- templates/user/edit_profile.html | 7 +++++++ templates/user/my_profile.html | 11 +++++++++++ 2 files changed, 18 insertions(+) create mode 100644 templates/user/edit_profile.html create mode 100644 templates/user/my_profile.html diff --git a/templates/user/edit_profile.html b/templates/user/edit_profile.html new file mode 100644 index 0000000..d0a0ae1 --- /dev/null +++ b/templates/user/edit_profile.html @@ -0,0 +1,7 @@ +{% extends 'base.html' %} +{% block content %} +
+{{ edit_profile_form.as_p }} + +
+{% endblock %} diff --git a/templates/user/my_profile.html b/templates/user/my_profile.html new file mode 100644 index 0000000..366d089 --- /dev/null +++ b/templates/user/my_profile.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% block content %} + +{% if edit_profile %} + edit my profile +{% endif %} + +
+{{ view_profile_form.as_p }} + +{% endblock %} -- cgit