diff --git a/templates/home.html b/templates/home.html index c3acfee..71ad914 100644 --- a/templates/home.html +++ b/templates/home.html @@ -13,8 +13,30 @@ {% trans 'ivatar' %} {% trans 'freeing the web one face at a time' %} +{% if user.is_anonymous %} {% trans 'Login' %} {% trans 'Sign up' %} +{% else %} + + + {{ request.user }} + + + {% trans 'Profile' %} + {% trans 'Preferences' %} + {% trans 'Import photo via mail address' %} + {% trans 'Import libravatar XML export' %} + {% trans 'Change password' %} + {% trans 'Reset password' %} + {% trans 'Logout' %} + {% if user.is_staff %} + + {% trans 'Admin' %} + + {% endif %} + + +{% endif %} {% trans 'Check email' %}