Commit 94e47b3b3f62e130171fd4a5b7378458ece4f8cc
1 parent
9c783032
Exists in
master
and in
39 other branches
Fixing bug on user profile
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/accounts/templates/accounts/user_detail.html
... | ... | @@ -26,7 +26,7 @@ |
26 | 26 | <div class="divider"></div> |
27 | 27 | {% if request.user.is_active %} |
28 | 28 | <ul class="unstyled-list"> |
29 | - {% for email in request.user.emails.iterator %} | |
29 | + {% for email in user_.emails.iterator %} | |
30 | 30 | <li><span class="icon-envelope icon-fixed-width"></span> {{ email.address }}</li> |
31 | 31 | {% endfor %} |
32 | 32 | </ul> | ... | ... |