comparison rhodecode/templates/admin/repos_groups/repos_groups_show.html @ 3410:5f1850e4712a beta

"Users groups" is grammatically incorrect English - rename to "user groups" - and same story with "repositories groups" This will only change the user facing texts. Names of files, modules, functions and variables should be changed too.
author Mads Kiilerich <madski@unity3d.com>
date Wed, 27 Feb 2013 01:28:00 +0100
parents f74be3359044
children b8f929bff7e3
comparison
equal deleted inserted replaced
3409:3c8d8725333f 3410:5f1850e4712a
1 ## -*- coding: utf-8 -*- 1 ## -*- coding: utf-8 -*-
2 <%inherit file="/base/base.html"/> 2 <%inherit file="/base/base.html"/>
3 3
4 <%def name="title()"> 4 <%def name="title()">
5 ${_('Repositories groups administration')} - ${c.rhodecode_name} 5 ${_('Repository groups administration')} - ${c.rhodecode_name}
6 </%def> 6 </%def>
7 7
8 8
9 <%def name="breadcrumbs_links()"> 9 <%def name="breadcrumbs_links()">
10 ${h.link_to(_('Admin'),h.url('admin_home'))} 10 ${h.link_to(_('Admin'),h.url('admin_home'))}
46 % for gr in c.groups: 46 % for gr in c.groups:
47 <% gr_cn = gr.repositories.count() %> 47 <% gr_cn = gr.repositories.count() %>
48 <tr> 48 <tr>
49 <td> 49 <td>
50 <div style="white-space: nowrap"> 50 <div style="white-space: nowrap">
51 <img class="icon" alt="${_('Repositories group')}" src="${h.url('/images/icons/database_link.png')}"/> 51 <img class="icon" alt="${_('Repository group')}" src="${h.url('/images/icons/database_link.png')}"/>
52 ${h.link_to(h.literal(' &raquo; '.join(map(h.safe_unicode,[g.name for g in gr.parents+[gr]]))), url('repos_group_home',group_name=gr.group_name))} 52 ${h.link_to(h.literal(' &raquo; '.join(map(h.safe_unicode,[g.name for g in gr.parents+[gr]]))), url('repos_group_home',group_name=gr.group_name))}
53 </div> 53 </div>
54 </td> 54 </td>
55 <td>${gr.group_description}</td> 55 <td>${gr.group_description}</td>
56 <td><b>${gr_cn}</b></td> 56 <td><b>${gr_cn}</b></td>
67 </tr> 67 </tr>
68 % endfor 68 % endfor
69 69
70 </table> 70 </table>
71 % else: 71 % else:
72 ${_('There are no repositories groups yet')} 72 ${_('There are no repository groups yet')}
73 % endif 73 % endif
74 74
75 </div> 75 </div>
76 </div> 76 </div>
77 77