diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-02-16 15:42:30 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-02-16 15:42:30 +0100 |
commit | 750b596044fa30b3ceb0f7885d18bbf5e71cb53e (patch) | |
tree | 974cb8cbb73da1b240a72e645370d311bb9340ca /hyperkitty/templates | |
parent | 5e894dd453c4b4b553b702f0b61c2e8315265297 (diff) | |
download | hyperkitty-750b596044fa30b3ceb0f7885d18bbf5e71cb53e.tar.gz hyperkitty-750b596044fa30b3ceb0f7885d18bbf5e71cb53e.tar.xz hyperkitty-750b596044fa30b3ceb0f7885d18bbf5e71cb53e.zip |
Give a link to gravatar from the user profile
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/user_profile.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hyperkitty/templates/user_profile.html b/hyperkitty/templates/user_profile.html index 10f8a04..ff154a8 100644 --- a/hyperkitty/templates/user_profile.html +++ b/hyperkitty/templates/user_profile.html @@ -1,6 +1,7 @@ {% extends "base.html" %} {% load i18n %} {% load hk_generic %} +{% load gravatar %} {% block title %} @@ -44,6 +45,12 @@ </p> </form> + <div class="gravatar"> + <a href="http://gravatar.com/">{% gravatar user.email 150 %}</a> + <p><a href="http://gravatar.com/">Edit on gravatar.com</a></p> + </div> + + <div class="clearfix"></div> <h3>Favorites</h3> {% if favorites %} |