# HG changeset patch # User Marcin Kuzminski # Date 2018-02-19 21:21:09 # Node ID 0b5d6b7f6bea625cf7df6b1445fd3516f247f73a # Parent 0b88e7de4f5c3df68895ac115431f6b96383a61f ui/user profiles: add better explanation of what we are viewing. diff --git a/rhodecode/templates/users/user.mako b/rhodecode/templates/users/user.mako --- a/rhodecode/templates/users/user.mako +++ b/rhodecode/templates/users/user.mako @@ -1,14 +1,14 @@ <%inherit file="/base/base.mako"/> <%def name="title()"> - ${c.user.username} + ${_('User')}: ${c.user.username} %if c.rhodecode_name: · ${h.branding(c.rhodecode_name)} %endif <%def name="breadcrumbs_links()"> - ${c.user.username} + ${_('User')}: ${c.user.username} <%def name="menu_bar_nav()"> diff --git a/rhodecode/templates/users/user_profile.mako b/rhodecode/templates/users/user_profile.mako --- a/rhodecode/templates/users/user_profile.mako +++ b/rhodecode/templates/users/user_profile.mako @@ -2,7 +2,7 @@
-

${_('Profile')}

+

${_('User Profile')}

%if h.HasPermissionAny('hg.admin')(): ${h.link_to(_('Edit'), h.route_path('user_edit', user_id=c.user.user_id), class_='panel-edit')} %endif