diff --git a/rhodecode/templates/admin/gists/index.html b/rhodecode/templates/admin/gists/index.html --- a/rhodecode/templates/admin/gists/index.html +++ b/rhodecode/templates/admin/gists/index.html @@ -2,7 +2,16 @@ <%inherit file="/base/base.html"/> <%def name="title()"> - ${_('Gists')} · ${c.rhodecode_name} + %if c.show_private: + ${_('Private Gists for user %s') % c.rhodecode_user.username} + %elif c.show_public: + ${_('Public Gists for user %s') % c.rhodecode_user.username} + %else: + ${_('Public Gists')} + %endif + %if c.rhodecode_name: + · ${c.rhodecode_name} + %endif %def> <%def name="breadcrumbs_links()"> @@ -28,7 +37,7 @@ %if c.rhodecode_user.username != 'default':