Commit 7489e9c404edf553ec37a7b42d0abbe3ca297617
1 parent
b52145ed
Exists in
master
and in
39 other branches
Adding missing link on user's primary email #118
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/accounts/templates/accounts/user_detail.html
... | ... | @@ -29,7 +29,7 @@ |
29 | 29 | <div class="divider"></div> |
30 | 30 | {% if request.user.is_active %} |
31 | 31 | <ul class="unstyled-list"> |
32 | - <li><span class="icon-envelope icon-fixed-width"></span> {{ user_.email }}</li> | |
32 | + <li><span class="icon-envelope icon-fixed-width"></span> <a href="mailto:{{ user_.email }}">{{ user_.email }}</a></li> | |
33 | 33 | </ul> |
34 | 34 | <div class="divider"></div> |
35 | 35 | {% endif %} | ... | ... |