# HG changeset patch # User Marcin Kuzminski # Date 2011-11-28 18:55:36 # Node ID c12ba65731923ae411832e8da48f0d6806f03255 # Parent 4a5b93b3bcdd8205319e309fbcac92b01df356a8 fixes initial state of repo counter on main page diff --git a/rhodecode/templates/index_base.html b/rhodecode/templates/index_base.html --- a/rhodecode/templates/index_base.html +++ b/rhodecode/templates/index_base.html @@ -3,7 +3,7 @@
- ${parent.breadcrumbs()} ${len(c.repos_list)} ${_('repositories')} + ${parent.breadcrumbs()} 0 ${_('repositories')}
%if c.rhodecode_user.username != 'default': %if h.HasPermissionAny('hg.admin','hg.create.repository')(): @@ -62,7 +62,7 @@ - %for cnt,repo in enumerate(c.repos_list): + %for cnt,repo in enumerate(c.repos_list,1):