diff -r 679c7e237052 -r 3c8f3b0e5b00 templates/user/my_profile.html
--- a/templates/user/my_profile.html Tue Mar 09 11:39:34 2010 +0530
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,64 +0,0 @@
-{% extends 'base.html' %}
-
-{% block title %}
- {{ profile.user }}'s Profile
-{% endblock %}
-
-{% block content %}
-
-
-
{{ profile }}'s Profile
-
- {% if edit_profile %}
- edit profile | change password
-
- {% endif %}
- {% if profile.photo %}
-
-
-
- {% endif %}
- {% if privilege or edit_profile %}
-
E-Mail
{{ profile.user.email }}
- {% endif %}
- {% if profile.aboutme %}
-
About Me
{{ profile.aboutme }}
- {% endif %}
- {% if profile.nick %}
-
Nick Name
{{ profile.nick }}
- {% endif %}
- {% if profile.dob %}
-
Date of Birth
{{ profile.dob }}
- {% endif %}
- {% if profile.credits %}
-
Credits
{{ profile.credits }}
- {% endif %}
- {% if profile.foss_comm %}
-
Foss Community
{{ profile.foss_comm }}
- {% endif %}
- {% if privilege or edit_profile %}
- {% if profile.phonenum %}
-
Phone Number
{{ profile.phonenum }}
- {% endif %}
- {% endif %}
- {% if profile.homepage %}
-
Homepage
{{ profile.homepage }}
- {% endif %}
- {% if privilege or edit_profile %}
- {% if profile.street or profile.city or profile.country %}
-
Address
- {% if profile.street %}
- {{ profile.street }}
-
- {% endif %}
- {% if profile.city %}
- {{ profile.city }}
-
- {% endif %}
- {% if profile.country %}
- {{ profile.country }}
- {% endif %}
- {% endif %}
- {% else %}
- {% endif %}
-{% endblock %}