Files
@ d27572fa323c
Branch filter:
Location: kallithea/kallithea/templates/admin/repos/repo_add_base.html
d27572fa323c
4.5 KiB
text/html
style: put all admin form buttons in a form-group, as our future Bootstrap likes it
Based on work by Dominik Ruf.
Based on work by Dominik Ruf.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | ## -*- coding: utf-8 -*-
${h.form(url('repos'))}
<div class="form">
<!-- fields -->
<div class="form-horizontal">
<div class="form-group">
<div class="label">
<label class="control-label" for="repo_name">${_('Name')}:</label>
</div>
<div class="input">
${h.text('repo_name',class_="small")}
</div>
</div>
<div id="remote_clone" class="field">
<div class="label">
<label class="control-label" for="clone_uri">${_('Clone remote repository')}:</label>
</div>
<div class="input">
${h.text('clone_uri',class_="small")}
<span class="help-block">
${_('Optional: URL of a remote repository. If set, the repository will be created as a clone from this URL.')}
</span>
</div>
</div>
<div class="form-group">
<div class="label label-textarea">
<label class="control-label" for="repo_description">${_('Description')}:</label>
</div>
<div class="textarea-repo editor">
${h.textarea('repo_description')}
<span class="help-block">${_('Keep it short and to the point. Use a README file for longer descriptions.')}</span>
</div>
</div>
<div class="form-group">
<div class="label">
<label class="control-label" for="repo_group">${_('Repository group')}:</label>
</div>
<div class="input">
${h.select('repo_group',request.GET.get('parent_group'),c.repo_groups,class_="medium")}
<span class="help-block">${_('Optionally select a group to put this repository into.')}</span>
</div>
</div>
<div id="copy_perms" class="field">
<div class="label label-checkbox">
<label class="control-label" for="repo_copy_permissions">${_('Copy parent group permissions')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('repo_copy_permissions',value="True")}
<span class="help-block">${_('Copy permission set from parent repository group.')}</span>
</div>
</div>
<div class="form-group">
<div class="label">
<label class="control-label" for="repo_type">${_('Type')}:</label>
</div>
<div class="input">
${h.select('repo_type','hg',c.backends,class_="small")}
<span class="help-block">${_('Type of repository to create.')}</span>
</div>
</div>
<div class="form-group">
<div class="label">
<label class="control-label" for="repo_landing_rev">${_('Landing revision')}:</label>
</div>
<div class="input">
${h.select('repo_landing_rev','',c.landing_revs,class_="medium")}
<span class="help-block">${_('Default revision for files page, downloads, full text search index and readme generation')}</span>
</div>
</div>
<div class="form-group">
<div class="label label-checkbox">
<label class="control-label" for="repo_private">${_('Private repository')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('repo_private',value="True")}
<span class="help-block">${_('Private repositories are only visible to people explicitly added as collaborators.')}</span>
</div>
</div>
<div class="form-group">
<div class="buttons">
${h.submit('add',_('Add'),class_="btn btn-default")}
</div>
</div>
</div>
</div>
<script>
$(document).ready(function(){
var setCopyPermsOption = function(group_val){
if(group_val != "-1"){
$('#copy_perms').show();
}
else{
$('#copy_perms').hide();
}
}
$("#repo_group").select2({
'dropdownAutoWidth': true
});
setCopyPermsOption($('#repo_group').val());
$("#repo_group").on("change", function(e) {
setCopyPermsOption(e.val);
});
$("#repo_type").select2({
'minimumResultsForSearch': -1
});
$("#repo_landing_rev").select2({
'minimumResultsForSearch': -1
});
$('#repo_name').focus();
});
</script>
${h.end_form()}
|