##// END OF EJS Templates
Moved proxy include of nginx to place where...
Moved proxy include of nginx to place where it will work for older versions of nginx

File last commit:

r3714:7e3d89d9 beta
r3917:35c0c625 beta
Show More
repos_groups_edit.html
103 lines | 3.5 KiB | text/html | HtmlLexer
#47 implemented basic edition of groups
r1347 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
Mads Kiilerich
Fix 'repos group' - it is 'repository group'
r3653 ${_('Edit repository group')} ${c.repos_group.name} &middot; ${c.rhodecode_name}
#47 implemented basic edition of groups
r1347 </%def>
Mads Kiilerich
use valid options for the top menu: repositories, journal, search and admin
r3603
#47 implemented basic edition of groups
r1347 <%def name="breadcrumbs_links()">
White-space cleanup
r1888 ${h.link_to(_('Admin'),h.url('admin_home'))}
&raquo;
Mads Kiilerich
Fix 'repos group' - it is 'repository group'
r3653 ${h.link_to(_('Repository groups'),h.url('repos_groups'))}
#47 implemented basic edition of groups
r1347 &raquo;
Mads Kiilerich
Fix a lot of casings - use standard casing in most places
r3654 ${_('Edit repository group %s') % c.repos_group.name}"
#47 implemented basic edition of groups
r1347 </%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
- Manage User’s Groups: create, delete, rename, add/remove users inside....
r3714 <div class="box box-left">
#47 implemented basic edition of groups
r1347 <!-- box / title -->
<div class="title">
White-space cleanup
r1888 ${self.breadcrumbs()}
Add new quick link to created child groups within a group
r3193 <ul class="links">
<li>
Show admin dropdown for users who are admin of repo groups
r3371 <span>${h.link_to(_(u'Add child group'),h.url('new_repos_group', parent_group=c.repos_group.group_id))}</span>
Add new quick link to created child groups within a group
r3193 </li>
</ul>
#47 implemented basic edition of groups
r1347 </div>
<!-- end box / title -->
Group management delegation:...
r3222 ${h.form(url('repos_group',group_name=c.repos_group.group_name),method='put')}
#47 implemented basic edition of groups
r1347 <div class="form">
<!-- fields -->
<div class="fields">
Mads Kiilerich
html: random indentation fixes
r3198 <div class="field">
#47 implemented basic edition of groups
r1347 <div class="label">
Augusto Herrmann
Corrected some label-input linking in templates
r1575 <label for="group_name">${_('Group name')}:</label>
#47 implemented basic edition of groups
r1347 </div>
<div class="input">
${h.text('group_name',class_='medium')}
</div>
Mads Kiilerich
html: random indentation fixes
r3198 </div>
White-space cleanup
r1888
Mads Kiilerich
html: don't use tabs
r3197 <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>
Mads Kiilerich
html: random indentation fixes
r3198 </div>
White-space cleanup
r1888
Mads Kiilerich
html: random indentation fixes
r3198 <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>
#227 Initial version of repository groups permissions system...
r1982 <div class="field">
Recursive set locking on all children of a group.
r2749 <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>
White space cleanup
r2815 </div>
#47 implemented basic edition of groups
r1347 <div class="buttons">
removed deprecated ui-button
r2607 ${h.submit('save',_('Save'),class_="ui-btn large")}
${h.reset('reset',_('Reset'),class_="ui-btn large")}
White-space cleanup
r1888 </div>
#47 implemented basic edition of groups
r1347 </div>
</div>
${h.end_form()}
White-space cleanup
r1888 </div>
- Manage User’s Groups: create, delete, rename, add/remove users inside....
r3714 <div class="box box-right">
<div class="title">
<h5>${_('Permissions')}</h5>
</div>
${h.form(url('set_repo_group_perm_member', group_name=c.repos_group.group_name),method='post')}
<div class="form">
<div class="fields">
<div class="field">
<div class="label">
<label for="input">${_('Permissions')}:</label>
</div>
<div class="input">
${h.hidden('repo_private')}
<%include file="repos_group_edit_perms.html"/>
</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>
White-space cleanup
r1888 </%def>