repo_add_base.html
128 lines
| 4.8 KiB
| text/html
|
HtmlLexer
r1111 | ## -*- coding: utf-8 -*- | |||
${h.form(url('repos'))} | ||||
<div class="form"> | ||||
<!-- fields --> | ||||
<div class="fields"> | ||||
<div class="field"> | ||||
<div class="label"> | ||||
<label for="repo_name">${_('Name')}:</label> | ||||
</div> | ||||
<div class="input"> | ||||
r3333 | ${h.text('repo_name',class_="small")} | |||
Bradley M. Kuhn
|
r4116 | <div style="margin: 6px 0px 0px 0px"> | ||
<a id="remote_clone_toggle" href="#"><i class="icon-download-alt"></i> ${_('Import existing repository ?')}</a> | ||||
</div> | ||||
r3333 | %if not c.rhodecode_user.is_admin: | |||
r1367 | ${h.hidden('user_created',True)} | |||
r3057 | %endif | |||
r1111 | </div> | |||
</div> | ||||
Bradley M. Kuhn
|
r4116 | <div id="remote_clone" class="field" style="display: none"> | ||
r1111 | <div class="label"> | |||
r1112 | <label for="clone_uri">${_('Clone from')}:</label> | |||
r1111 | </div> | |||
<div class="input"> | ||||
r1112 | ${h.text('clone_uri',class_="small")} | |||
r2103 | <span class="help-block">${_('Optional http[s] url from which repository should be cloned.')}</span> | |||
r1111 | </div> | |||
Bradley M. Kuhn
|
r4116 | </div> | ||
<div class="field"> | ||||
<div class="label label-textarea"> | ||||
<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="field"> | ||||
r1112 | <div class="label"> | |||
<label for="repo_group">${_('Repository group')}:</label> | ||||
</div> | ||||
<div class="input"> | ||||
r2130 | ${h.select('repo_group',request.GET.get('parent_group'),c.repo_groups,class_="medium")} | |||
r2485 | <span class="help-block">${_('Optionaly select a group to put this repository into.')}</span> | |||
r1112 | </div> | |||
Bradley M. Kuhn
|
r4116 | </div> | ||
<div id="copy_perms" class="field"> | ||||
<div class="label label-checkbox"> | ||||
<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> | ||||
r1111 | <div class="field"> | |||
<div class="label"> | ||||
<label for="repo_type">${_('Type')}:</label> | ||||
</div> | ||||
<div class="input"> | ||||
${h.select('repo_type','hg',c.backends,class_="small")} | ||||
r2103 | <span class="help-block">${_('Type of repository to create.')}</span> | |||
r1111 | </div> | |||
Bradley M. Kuhn
|
r4116 | </div> | ||
<div class="field"> | ||||
r2459 | <div class="label"> | |||
r3056 | <label for="repo_landing_rev">${_('Landing revision')}:</label> | |||
r2459 | </div> | |||
<div class="input"> | ||||
r3056 | ${h.select('repo_landing_rev','',c.landing_revs,class_="medium")} | |||
Bradley M. Kuhn
|
r4116 | <span class="help-block">${_('Default revision for files page, downloads, full text search index and readme generation')}</span> | ||
r2459 | </div> | |||
r2461 | </div> | |||
r1111 | <div class="field"> | |||
<div class="label label-checkbox"> | ||||
r3056 | <label for="repo_private">${_('Private repository')}:</label> | |||
r1111 | </div> | |||
<div class="checkboxes"> | ||||
r3056 | ${h.checkbox('repo_private',value="True")} | |||
r2103 | <span class="help-block">${_('Private repositories are only visible to people explicitly added as collaborators.')}</span> | |||
r1111 | </div> | |||
Bradley M. Kuhn
|
r4116 | </div> | ||
r1111 | <div class="buttons"> | |||
Bradley M. Kuhn
|
r4116 | ${h.submit('add',_('Add'),class_="btn")} | ||
r1888 | </div> | |||
r1111 | </div> | |||
r1888 | </div> | |||
Bradley M. Kuhn
|
r4116 | <script> | ||
$(document).ready(function(){ | ||||
var setCopyPermsOption = function(group_val){ | ||||
if(group_val != "-1"){ | ||||
$('#copy_perms').show() | ||||
} | ||||
else{ | ||||
$('#copy_perms').hide(); | ||||
} | ||||
} | ||||
$('#remote_clone_toggle').on('click', function(e){ | ||||
$('#remote_clone').show(); | ||||
e.preventDefault(); | ||||
}) | ||||
if($('#remote_clone input').hasClass('error')){ | ||||
$('#remote_clone').show(); | ||||
} | ||||
if($('#remote_clone input').val()){ | ||||
$('#remote_clone').show(); | ||||
} | ||||
$("#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> | ||||
r1888 | ${h.end_form()} | |||