##// END OF EJS Templates
First step in two-part process to rename directories to kallithea....
First step in two-part process to rename directories to kallithea. This first step is to change all references in the files where they refer to the old directory name.

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4186:7e5f8c12 kallithea-2.2.5-r...
Show More
repo_group_add.html
98 lines | 2.9 KiB | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Add repository group')}
%if c.rhodecode_name:
&middot; ${c.rhodecode_name}
%endif
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))}
&raquo;
${h.link_to(_('Repository groups'),h.url('repos_groups'))}
&raquo;
${_('Add Repository Group')}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
${h.form(url('repos_groups'))}
<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_='small')}
</div>
</div>
<div class="field">
<div class="label label-textarea">
<label for="group_description">${_('Description')}:</label>
</div>
<div class="textarea-repo 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',request.GET.get('parent_group'),c.repo_groups,class_="medium")}
</div>
</div>
<div id="copy_perms" class="field">
<div class="label label-checkbox">
<label for="group_copy_permissions">${_('Copy parent group permissions')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('group_copy_permissions',value="True")}
<span class="help-block">${_('Copy permission set from parent repository group.')}</span>
</div>
</div>
<div class="buttons">
${h.submit('save',_('Save'),class_="btn")}
</div>
</div>
</div>
${h.end_form()}
</div>
<script>
$(document).ready(function(){
var setCopyPermsOption = function(group_val){
if(group_val != "-1"){
$('#copy_perms').show()
}
else{
$('#copy_perms').hide();
}
}
$("#group_parent_id").select2({
'dropdownAutoWidth': true
});
setCopyPermsOption($('#group_parent_id').val())
$("#group_parent_id").on("change", function(e) {
setCopyPermsOption(e.val)
})
$('#group_name').focus();
})
</script>
</%def>