diff options
Diffstat (limited to 'hyperkitty/templates/user_public_profile.html')
-rw-r--r-- | hyperkitty/templates/user_public_profile.html | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/hyperkitty/templates/user_public_profile.html b/hyperkitty/templates/user_public_profile.html index b62002d..0e4f7af 100644 --- a/hyperkitty/templates/user_public_profile.html +++ b/hyperkitty/templates/user_public_profile.html @@ -6,14 +6,14 @@ {% block title %} -{% trans 'User Profile' %} for {{ email }} - {{ app_name|title }} +{% trans 'User Profile' %} for {{ fullname }} - {{ app_name|title }} {% endblock %} {% block content %} <div id="user-profile"> - <h1>User profile <small>for {{ email }}</small></h1> + <h1>User profile <small>for {{ fullname }}</small></h1> <table class="table table-bordered table-striped user-data"> <tbody> @@ -21,10 +21,6 @@ <th>{% trans 'Name:' %}</th> <td>{{ fullname }}</td> </tr> - <tr> - <th>{% trans 'Email:' %}</th> - <td>{{ email }}</td> - </tr> {% if creation %} <tr> <th>{% trans 'Creation:' %}</th> |