##// END OF EJS Templates
moved out ui_sections out of make ui function
moved out ui_sections out of make ui function

File last commit:

r383:04f8fd55 default
r386:a9a607a5 default
Show More
settings.html
84 lines | 2.8 KiB | text/html | HtmlLexer
added settings rest controllers for admin, updated routes with easier submodule handling
r346 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Settings administration')}
</%def>
version bump to 0.8...
r362
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))} &raquo; ${_('Settings')}
added settings rest controllers for admin, updated routes with easier submodule handling
r346 </%def>
version bump to 0.8...
r362
added settings rest controllers for admin, updated routes with easier submodule handling
r346 <%def name="page_nav()">
${self.menu('admin')}
</%def>
implemented manual repo rescann and remapping
r348
version bump to 0.8...
r362 <%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
implemented manual repo rescann and remapping
r348
fixed settings template
r383 <h3>${_('Remap and rescan repositories')}</h3>
routes python 2.5 compatible...
r371 ${h.form(url('admin_setting', setting_id='mapping'),method='put')}
version bump to 0.8...
r362 <div class="form">
<!-- fields -->
fixed settings template
r383
version bump to 0.8...
r362 <div class="fields">
<div class="field">
<div class="label label-checkbox">
cleared global application settings....
r381 <label for="destroy">${_('rescan option')}:</label>
version bump to 0.8...
r362 </div>
<div class="checkboxes">
<div class="checkbox">
${h.checkbox('destroy',True)}
<label for="checkbox-1">
<span class="tooltip" tooltip_title="${h.tooltip(_('In case a repository was deleted from filesystem and there are leftovers in the database check this option to scan obsolete data in database and remove it.'))}">
${_('destroy old data')}</span> </label>
</div>
</div>
</div>
<div class="buttons">
removed td tag
r378 ${h.submit('rescan','rescan repositories',class_="ui-button ui-widget ui-state-default ui-corner-all")}
version bump to 0.8...
r362 </div>
</div>
</div>
${h.end_form()}
fixed settings template
r383 <h3>${_('Global application settings')}</h3>
routes python 2.5 compatible...
r371 ${h.form(url('admin_setting', setting_id='global'),method='put')}
version bump to 0.8...
r362 <div class="form">
<!-- fields -->
fixed settings template
r383
version bump to 0.8...
r362 <div class="fields">
<div class="field">
<div class="label">
<label for="input-small">${_('Application name')}:</label>
</div>
<div class="input">
cleared global application settings....
r381 ${h.text('hg_app_title',size=30)}
version bump to 0.8...
r362 </div>
</div>
<div class="field">
<div class="label">
<label for="input-small">${_('Realm text')}:</label>
</div>
<div class="input">
cleared global application settings....
r381 ${h.text('hg_app_realm',size=30)}
version bump to 0.8...
r362 </div>
</div>
<div class="buttons">
${h.submit('save','save settings',class_="ui-button ui-widget ui-state-default ui-corner-all")}
</div>
</div>
</div>
${h.end_form()}
</div>
added settings rest controllers for admin, updated routes with easier submodule handling
r346 </%def>