##// END OF EJS Templates
swap the select values with revisions dynamically when switching the repos on pull request view...
swap the select values with revisions dynamically when switching the repos on pull request view - fix the partial ajax request that should never do redirect

File last commit:

r2673:d5e42c00 beta
r2847:1cd0a0c0 beta
Show More
repo_settings.html
101 lines | 3.7 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
Vincent Duvert
Better i18n for page titles.
r2417 ${_('%s Settings') % c.repo_name} - ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
Takumi IINO
i18n 'Home' in breadcrumbs
r2492 ${h.link_to(_(u'Home'),h.url('/'))}
fixed breadcrumbs in few pages
r1084 &raquo;
White-space cleanup
r1888 ${h.link_to(c.repo_info.repo_name,h.url('summary_home',repo_name=c.repo_info.repo_name))}
&raquo;
${_('Settings')}
renamed project to rhodecode
r547 </%def>
more templates updates
r579
renamed project to rhodecode
r547 <%def name="page_nav()">
${self.menu('settings')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
White-space cleanup
r1888 ${self.breadcrumbs()}
renamed project to rhodecode
r547 </div>
${h.form(url('repo_settings_update', repo_name=c.repo_info.repo_name),method='put')}
<div class="form">
<!-- fields -->
<div class="fields">
<div class="field">
<div class="label">
<label for="repo_name">${_('Name')}:</label>
</div>
<div class="input input-medium">
extended size of some input fields...
r562 ${h.text('repo_name',class_="small")}
renamed project to rhodecode
r547 </div>
</div>
UI...
r2103 <div class="field">
<div class="label">
<label for="clone_uri">${_('Clone uri')}:</label>
</div>
<div class="input">
${h.text('clone_uri',class_="medium")}
<span class="help-block">${_('Optional http[s] url from which repository should be cloned.')}</span>
</div>
</div>
fixes #288...
r1594 <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")}
UI...
r2103 <span class="help-block">${_('Optional select a group to put this repository into.')}</span>
fixes #288...
r1594 </div>
White-space cleanup
r1888 </div>
renamed project to rhodecode
r547 <div class="field">
fixed issue #497 missing landing rev on second edit repo page
r2596 <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>
white space cleanup
r2673 </div>
fixed issue #497 missing landing rev on second edit repo page
r2596 <div class="field">
renamed project to rhodecode
r547 <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>
renamed project to rhodecode
r547 </div>
</div>
White-space cleanup
r1888
renamed project to rhodecode
r547 <div class="field">
<div class="label label-checkbox">
UI...
r2103 <label for="private">${_('Private repository')}:</label>
renamed project to rhodecode
r547 </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>
renamed project to rhodecode
r547 </div>
</div>
White-space cleanup
r1888
renamed project to rhodecode
r547 <div class="field">
<div class="label">
<label for="">${_('Permissions')}:</label>
</div>
<div class="input">
#56 added ajax removal of users groups,...
r1015 <%include file="../admin/repos/repo_edit_perms.html"/>
</div>
White-space cleanup
r1888
renamed project to rhodecode
r547 <div class="buttons">
removed deprecated ui-button
r2607 ${h.submit('save',_('Save'),class_="ui-btn large")}
${h.reset('reset',_('Reset'),class_="ui-btn large")}
White-space cleanup
r1888 </div>
renamed project to rhodecode
r547 </div>
White-space cleanup
r1888 </div>
renamed project to rhodecode
r547 ${h.end_form()}
</div>
more templates updates
r579 </div>
White-space cleanup
r1888 </%def>