diff -r e338eaeccad7 -r 39f83b4cf557 templates/user/my_profile.html --- a/templates/user/my_profile.html Fri Jan 14 00:57:39 2011 +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.pynts %} -

Pynts


{{ profile.pynts }} - {% 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 %}