##// END OF EJS Templates
#47 implemented Adding of new repo_groups+forms+validators. Fixed sorting of repo groups by main names in multiple locations. Removed some unneeded calls to self.sa for exchange to .query() methods....
#47 implemented Adding of new repo_groups+forms+validators. Fixed sorting of repo groups by main names in multiple locations. Removed some unneeded calls to self.sa for exchange to .query() methods. Added new db unique key for Group

File last commit:

r1345:3bce31f0 beta
r1345:3bce31f0 beta
Show More
repo_add_base.html
60 lines | 2.0 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")}
</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")}
added base for repo creation forms, both templates will share the same form.
r1111 </div>
</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">
${h.select('repo_group','',c.repo_groups,class_="medium")}
</div>
</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")}
</div>
</div>
<div class="field">
<div class="label label-textarea">
<label for="description">${_('Description')}:</label>
</div>
<div class="textarea text-area editor">
${h.textarea('description',cols=23,rows=5)}
</div>
</div>
<div class="field">
<div class="label label-checkbox">
<label for="private">${_('Private')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('private',value="True")}
</div>
</div>
<div class="buttons">
${h.submit('add','add',class_="ui-button")}
</div>
</div>
</div>
${h.end_form()}