##// 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_edit_settings.html
55 lines | 1.8 KiB | text/html | HtmlLexer
## -*- coding: utf-8 -*-
${h.form(url('repos_group',group_name=c.repo_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-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_="btn")}
${h.reset('reset',_('Reset'),class_="btn")}
</div>
</div>
</div>
${h.end_form()}
<script>
$(document).ready(function(){
$("#group_parent_id").select2({
'dropdownAutoWidth': true
});
})
</script>