diff --git a/rhodecode/templates/base/base.html b/rhodecode/templates/base/base.html
--- a/rhodecode/templates/base/base.html
+++ b/rhodecode/templates/base/base.html
@@ -67,6 +67,26 @@
%endif
%def>
+<%def name="admin_menu()">
+
+%def>
+
+<%def name="admin_menu_simple()">
+
+ - ${h.link_to(_('repositories groups'),h.url('repos_groups'),class_='repos_groups')}
+
+%def>
+
<%def name="repo_context_bar(current=None)">
<%
def follow_class():
@@ -113,12 +133,11 @@
graphics/shader-move
@73318:8d3d6ee94072
-
- ## we render this menu only not for those pages
- %if current not in ['home','admin', 'search', 'journal']:
- ##REGULAR MENU
-
-
-
-
-
+ ##ROOT MENU
+ %if c.rhodecode_user.username != 'default':
+
+
- ${usermenu()}
-
- %else:
- ##ROOT MENU
- %if c.rhodecode_user.username != 'default':
-
-
+ ${admin_menu()}
- % if h.HasPermissionAll('hg.admin')('access admin main page'):
-
-
- ${admin_menu()}
-
- % elif c.rhodecode_user.groups_admin:
-
-
- ${admin_menu_simple()}
-
- % endif
- ${usermenu()}
- %endif
+ % elif c.rhodecode_user.groups_admin:
+
+
+ ${admin_menu_simple()}
+
+ % endif
+ ${usermenu()}