diff options
author | anoop | 2010-03-08 16:30:35 +0530 |
---|---|---|
committer | anoop | 2010-03-08 16:30:35 +0530 |
commit | 29c5d85d6987faa60f57d41bad57af68a2562673 (patch) | |
tree | c16dd0582bf946e5a44279319096b8ee96a7161d | |
parent | 898d718b758ed53505993971c4d38f8be98e2819 (diff) | |
download | pytask-29c5d85d6987faa60f57d41bad57af68a2562673.tar.gz pytask-29c5d85d6987faa60f57d41bad57af68a2562673.tar.bz2 pytask-29c5d85d6987faa60f57d41bad57af68a2562673.zip |
email address displayed was incorrect, fixed it.
-rw-r--r-- | templates/user/my_profile.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/user/my_profile.html b/templates/user/my_profile.html index bfb6649..cb3db1f 100644 --- a/templates/user/my_profile.html +++ b/templates/user/my_profile.html @@ -19,7 +19,7 @@ </a> {% endif %} {% if privilege or edit_profile %} - <br><h4>E-Mail</h4><hr>{{ user.email }} + <br><h4>E-Mail</h4><hr>{{ profile.user.email }} {% endif %} {% if profile.aboutme %} <br><h4>About Me</h4><hr>{{ profile.aboutme }} |