# HG changeset patch # User Mads Kiilerich # Date 1370995985 -7200 # Node ID d690d0ea9393939fa5f7cfb8c7608a9dcb8b0136 # Parent ac770e9c2f4fe0110f6dd5fd0804c32ee9bde16c repo group index: clarify that it is repo group that can be created/edited diff -r ac770e9c2f4f -r d690d0ea9393 rhodecode/templates/admin/repos_groups/repos_groups_show.html --- a/rhodecode/templates/admin/repos_groups/repos_groups_show.html Wed Jun 12 02:13:05 2013 +0200 +++ b/rhodecode/templates/admin/repos_groups/repos_groups_show.html Wed Jun 12 02:13:05 2013 +0200 @@ -28,7 +28,7 @@ diff -r ac770e9c2f4f -r d690d0ea9393 rhodecode/templates/index_base.html --- a/rhodecode/templates/index_base.html Wed Jun 12 02:13:05 2013 +0200 +++ b/rhodecode/templates/index_base.html Wed Jun 12 02:13:05 2013 +0200 @@ -12,19 +12,19 @@ %if c.group: ${h.link_to(_('Add repository'),h.url('new_repo',parent_group=c.group.group_id))} %if h.HasPermissionAny('hg.admin')() or h.HasReposGroupPermissionAny('group.admin')(c.group.group_name): - ${h.link_to(_(u'Add group'),h.url('new_repos_group', parent_group=c.group.group_id))} + ${h.link_to(_(u'Add repository group'),h.url('new_repos_group', parent_group=c.group.group_id))} %endif %else: ${h.link_to(_('Add repository'),h.url('new_repo'))} %if h.HasPermissionAny('hg.admin')(): - ${h.link_to(_(u'Add group'),h.url('new_repos_group'))} + ${h.link_to(_(u'Add repository group'),h.url('new_repos_group'))} %endif %endif %endif %if c.group and h.HasReposGroupPermissionAny('group.admin')(c.group.group_name):
  • - ${h.link_to(_('Edit group'),h.url('edit_repos_group',group_name=c.group.group_name), title=_('You have admin right to this group, and can edit it'))} + ${h.link_to(_('Edit repository group'),h.url('edit_repos_group',group_name=c.group.group_name), title=_('You have admin right to this group, and can edit it'))}
  • %endif