Files
@ ae5ac36cdf83
Branch filter:
Location: kallithea/rhodecode/templates/admin/repos_groups/repos_groups_edit.html - annotation
ae5ac36cdf83
3.0 KiB
text/html
pull request: use unionrepo instead of outgoing
This makes it possible to look the 'moving target' symbols up in the right repo.
Using a revset with the right revisions also removes the need for pruning
changesets that are outside the requested range.
It will also not be confused by changesets that for some reason has been pulled
to the repo but haven't been merged yet. They are going to be 'merged' by the
'pull' request and should thus be a part of what is reviewed.
This makes it possible to look the 'moving target' symbols up in the right repo.
Using a revset with the right revisions also removes the need for pruning
changesets that are outside the requested range.
It will also not be confused by changesets that for some reason has been pulled
to the repo but haven't been merged yet. They are going to be 'merged' by the
'pull' request and should thus be a part of what is reviewed.
43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 27be8f94c207 43b8e161be3f 43b8e161be3f f91d3f9b7230 f91d3f9b7230 f91d3f9b7230 43b8e161be3f 27be8f94c207 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f f91d3f9b7230 cbc644d96a53 cbc644d96a53 663f4f26776a cbc644d96a53 cbc644d96a53 43b8e161be3f 43b8e161be3f b4daef4cc26d 43b8e161be3f 43b8e161be3f 43b8e161be3f c20adbaf16af 43b8e161be3f e0b069468de0 43b8e161be3f 43b8e161be3f 43b8e161be3f 43b8e161be3f c20adbaf16af f91d3f9b7230 b4f401524060 b4f401524060 b4f401524060 b4f401524060 b4f401524060 b4f401524060 b4f401524060 c20adbaf16af f91d3f9b7230 c20adbaf16af c20adbaf16af c20adbaf16af c20adbaf16af c20adbaf16af c20adbaf16af c20adbaf16af c20adbaf16af 87f0800abc7b 87f0800abc7b 87f0800abc7b 87f0800abc7b 87f0800abc7b 87f0800abc7b 87f0800abc7b 87f0800abc7b 3ed4dae499d0 3ed4dae499d0 3ed4dae499d0 3ed4dae499d0 3ed4dae499d0 3ed4dae499d0 3ed4dae499d0 3ed4dae499d0 acc05c33cc0c 43b8e161be3f 7ae36df760ce 7ae36df760ce f91d3f9b7230 43b8e161be3f 43b8e161be3f 43b8e161be3f f91d3f9b7230 f91d3f9b7230 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Edit repos group')} ${c.repos_group.name} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))}
»
${h.link_to(_('Repos groups'),h.url('repos_groups'))}
»
${_('edit repos group')} "${c.repos_group.name}"
</%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 child group'),h.url('new_repos_group', parent_group=c.repos_group.group_id))}</span>
</li>
</ul>
</div>
<!-- end box / title -->
${h.form(url('repos_group',group_name=c.repos_group.group_name),method='put')}
<div class="form">
<!-- fields -->
<div class="fields">
<div class="field">
<div class="label">
<label for="group_name">${_('Group name')}:</label>
</div>
<div class="input">
${h.text('group_name',class_='medium')}
</div>
</div>
<div class="field">
<div class="label label-textarea">
<label for="group_description">${_('Description')}:</label>
</div>
<div class="textarea text-area editor">
${h.textarea('group_description',cols=23,rows=5,class_="medium")}
</div>
</div>
<div class="field">
<div class="label">
<label for="group_parent_id">${_('Group parent')}:</label>
</div>
<div class="input">
${h.select('group_parent_id','',c.repo_groups,class_="medium")}
</div>
</div>
<div class="field">
<div class="label">
<label for="input">${_('Permissions')}:</label>
</div>
<div class="input">
<%include file="repos_group_edit_perms.html"/>
</div>
</div>
<div class="field">
<div class="label label-checkbox">
<label for="enable_locking">${_('Enable locking')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('enable_locking',value="True")}
<span class="help-block">${_('Enable lock-by-pulling on group. This option will be applied to all other groups and repositories inside')}</span>
</div>
</div>
<div class="buttons">
${h.submit('save',_('Save'),class_="ui-btn large")}
${h.reset('reset',_('Reset'),class_="ui-btn large")}
</div>
</div>
</div>
${h.end_form()}
</div>
</%def>
|