Files
@ 880fe0697cd2
Branch filter:
Location: kallithea/kallithea/templates/forks/fork.html
880fe0697cd2
3.9 KiB
text/html
style: introduce radio-inline / checkbox-inline for status votes - preparing for Bootstrap but so far not used
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 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%block name="title">
${_('Fork repository %s') % c.repo_name}
</%block>
<%def name="breadcrumbs_links()">
${_('Fork')}
</%def>
<%block name="header_menu">
${self.menu('repositories')}
</%block>
<%def name="main()">
${self.repo_context_bar('createfork')}
<div class="panel panel-primary">
<!-- box / title -->
${h.form(url('repo_fork_create_home',repo_name=c.repo_info.repo_name))}
<div class="form">
<!-- fields -->
<div class="form-horizontal">
<div class="form-group">
<label class="control-label" for="repo_name">${_('Fork name')}:</label>
<div class="input">
${h.text('repo_name',class_='form-control')}
${h.hidden('repo_type',c.repo_info.repo_type)}
${h.hidden('fork_parent_id',c.repo_info.repo_id)}
</div>
</div>
<div class="form-group">
<label class="control-label" for="description">${_('Description')}:</label>
<div class="textarea editor">
${h.textarea('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">
<label class="control-label" for="repo_group">${_('Repository group')}:</label>
<div class="input">
${h.select('repo_group','',c.repo_groups,class_='form-control')}
<span class="help-block">${_('Optionally select a group to put this repository into.')}</span>
</div>
</div>
<div class="form-group">
<label class="control-label" for="landing_rev">${_('Landing revision')}:</label>
<div class="input">
${h.select('landing_rev','',c.landing_revs,class_='form-control')}
<span class="help-block">${_('Default revision for files page, downloads, whoosh, and readme.')}</span>
</div>
</div>
<div class="form-group">
<label class="control-label" for="private">${_('Private')}:</label>
<div class="checkboxes">
${h.checkbox('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">
<label class="control-label" for="copy_permissions">${_('Copy permissions')}:</label>
<div class="checkboxes">
${h.checkbox('copy_permissions',value="True", checked="checked")}
<span class="help-block">${_('Copy permissions from forked repository')}</span>
</div>
</div>
%if c.can_update:
<div class="form-group">
<label class="control-label" for="update_after_clone">${_('Update after clone')}:</label>
<div class="checkboxes">
${h.checkbox('update_after_clone',value="True")}
<span class="help-block">${_('Checkout source after making a clone')}</span>
</div>
</div>
%endif
<div class="form-group">
<div class="buttons">
${h.submit('',_('Fork this Repository'),class_="btn btn-default")}
</div>
</div>
</div>
</div>
${h.end_form()}
</div>
<script>
$(document).ready(function(){
$("#repo_group").select2({
'dropdownAutoWidth': true
});
$("#landing_rev").select2({
'minimumResultsForSearch': -1
});
$('#repo_name').focus();
});
</script>
</%def>
|