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
@@ -116,14 +116,14 @@
${_('Summary')}
-
-
-
-
-
- ${_('Shortlog')}
-
-
+ ##
+ ##
+ ##
+ ##
+ ##
+ ## ${_('Shortlog')}
+ ##
+ ##
@@ -142,7 +142,7 @@
-
- ${h.link_to(_('branches'),h.url('branches_home',repo_name=c.repo_name),class_='branches childs')}
+ ${h.link_to('%s (%s)' % (_('branches'),len(c.repository_branches.values()),),h.url('branches_home',repo_name=c.repo_name),class_='branches childs')}
%if c.repository_branches.values():
%for cnt,branch in enumerate(c.repository_branches.items()):
@@ -154,7 +154,7 @@
-
- ${h.link_to(_('tags'),h.url('tags_home',repo_name=c.repo_name),class_='tags childs')}
+ ${h.link_to('%s (%s)' % (_('tags'),len(c.repository_tags.values()),),h.url('tags_home',repo_name=c.repo_name),class_='tags childs')}
%if c.repository_tags.values():
%for cnt,tag in enumerate(c.repository_tags.items()):