Files
@ c77d5c6358eb
Branch filter:
Location: kallithea/rhodecode/templates/admin/repos_groups/repos_groups_show.html - annotation
c77d5c6358eb
2.4 KiB
text/html
Implemented #670 Implementation of Roles in Pull Request
- only owner, reviewer or admin can change status or close pull request
- only owner, reviewer or admin can change status or close pull request
3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 aaec08ad9daf f91d3f9b7230 f91d3f9b7230 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 f91d3f9b7230 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 2c0d35e336b5 3bce31f026b8 3bce31f026b8 3bce31f026b8 f91d3f9b7230 3bce31f026b8 f91d3f9b7230 3bce31f026b8 08f89c688592 3bce31f026b8 3bce31f026b8 3bce31f026b8 3bce31f026b8 9e377342802c 3bce31f026b8 3bce31f026b8 3bce31f026b8 08f89c688592 3bce31f026b8 3bce31f026b8 08f89c688592 3bce31f026b8 f91d3f9b7230 3bce31f026b8 3bce31f026b8 f91d3f9b7230 3bce31f026b8 3bce31f026b8 923d2f699bd7 3bce31f026b8 f91d3f9b7230 3bce31f026b8 f91d3f9b7230 f91d3f9b7230 f91d3f9b7230 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Repositories groups administration')} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))} » ${_('Repositories')}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
<ul class="links">
<li>
<span>${h.link_to(_(u'ADD NEW GROUP'),h.url('new_repos_group'))}</span>
</li>
</ul>
</div>
<!-- end box / title -->
<div class="table">
% if c.groups:
<table class="table_disp">
<thead>
<tr>
<th class="left"><a href="#">${_('Group name')}</a></th>
<th class="left"><a href="#">${_('Description')}</a></th>
<th class="left"><a href="#">${_('Number of toplevel repositories')}</a></th>
<th class="left">${_('action')}</th>
</tr>
</thead>
## REPO GROUPS
% for gr in c.groups:
<% gr_cn = gr.repositories.count() %>
<tr>
<td>
<div style="white-space: nowrap">
<img class="icon" alt="${_('Repositories group')}" src="${h.url('/images/icons/database_link.png')}"/>
${h.link_to(h.literal(' » '.join(map(h.safe_unicode,[g.name for g in gr.parents+[gr]]))),url('edit_repos_group',id=gr.group_id))}
</div>
</td>
<td>${gr.group_description}</td>
<td><b>${gr_cn}</b></td>
<td>
${h.form(url('repos_group', id=gr.group_id),method='delete')}
${h.submit('remove_%s' % gr.name,_('delete'),class_="delete_icon action_button",onclick="return confirm('"+ungettext('Confirm to delete this group: %s with %s repository','Confirm to delete this group: %s with %s repositories',gr_cn) % (gr.name,gr_cn)+"');")}
${h.end_form()}
</td>
</tr>
% endfor
</table>
% else:
${_('There are no repositories groups yet')}
% endif
</div>
</div>
</%def>
|