##// END OF EJS Templates
Initial version of landing revisions ref #483...
Initial version of landing revisions ref #483 - fixed relevant tests for creation of repo - added some tests for git

File last commit:

r2459:9492ab68 beta
r2459:9492ab68 beta
Show More
repo_add_base.html
77 lines | 3.1 KiB | text/html | HtmlLexer
added base for repo creation forms, both templates will share the same form.
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">
${h.text('repo_name',c.new_repo,class_="small")}
fixes issue #199 wrong redirection for non admin users after creating a repository
r1367 %if not h.HasPermissionAll('hg.admin')('repo create form'):
${h.hidden('user_created',True)}
%endif
added base for repo creation forms, both templates will share the same form.
r1111 </div>
</div>
<div class="field">
<div class="label">
#109, added optional clone uri when creating repo....
r1112 <label for="clone_uri">${_('Clone from')}:</label>
added base for repo creation forms, both templates will share the same form.
r1111 </div>
<div class="input">
#109, added optional clone uri when creating repo....
r1112 ${h.text('clone_uri',class_="small")}
UI...
r2103 <span class="help-block">${_('Optional http[s] url from which repository should be cloned.')}</span>
added base for repo creation forms, both templates will share the same form.
r1111 </div>
White-space cleanup
r1888 </div>
#109, added optional clone uri when creating repo....
r1112 <div class="field">
<div class="label">
<label for="repo_group">${_('Repository group')}:</label>
</div>
<div class="input">
#401 repository group is automatically pre-selected when adding repos inside a repository group
r2130 ${h.select('repo_group',request.GET.get('parent_group'),c.repo_groups,class_="medium")}
UI...
r2103 <span class="help-block">${_('Optional select a group to put this repository into.')}</span>
#109, added optional clone uri when creating repo....
r1112 </div>
White-space cleanup
r1888 </div>
added base for repo creation forms, both templates will share the same form.
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")}
UI...
r2103 <span class="help-block">${_('Type of repository to create.')}</span>
added base for repo creation forms, both templates will share the same form.
r1111 </div>
White-space cleanup
r1888 </div>
Initial version of landing revisions ref #483...
r2459 <div class="field">
<div class="label">
<label for="landing_rev">${_('Landing revision')}:</label>
</div>
<div class="input">
${h.select('landing_rev','',c.landing_revs,class_="medium")}
<span class="help-block">${_('Default revision for files page, downloads, whoosh and readme')}</span>
</div>
</div>
added base for repo creation forms, both templates will share the same form.
r1111 <div class="field">
<div class="label label-textarea">
<label for="description">${_('Description')}:</label>
</div>
<div class="textarea text-area editor">
UI...
r2103 ${h.textarea('description')}
<span class="help-block">${_('Keep it short and to the point. Use a README file for longer descriptions.')}</span>
added base for repo creation forms, both templates will share the same form.
r1111 </div>
</div>
<div class="field">
<div class="label label-checkbox">
UI...
r2103 <label for="private">${_('Private repository')}:</label>
added base for repo creation forms, both templates will share the same form.
r1111 </div>
<div class="checkboxes">
${h.checkbox('private',value="True")}
UI...
r2103 <span class="help-block">${_('Private repositories are only visible to people explicitly added as collaborators.')}</span>
added base for repo creation forms, both templates will share the same form.
r1111 </div>
</div>
<div class="buttons">
Augusto Herrmann
Added pt_BR localization, added i18n wrappers on some places missing, fixed css in settings screen for longer labels.
r1472 ${h.submit('add',_('add'),class_="ui-button")}
White-space cleanup
r1888 </div>
added base for repo creation forms, both templates will share the same form.
r1111 </div>
White-space cleanup
r1888 </div>
${h.end_form()}