##// END OF EJS Templates
implemented manual repo rescann and remapping
implemented manual repo rescann and remapping

File last commit:

r348:e8fc8754 default
r348:e8fc8754 default
Show More
settings.html
53 lines | 1.6 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>
<%def name="breadcrumbs()">
${h.link_to(u'Admin',h.url('admin_home'))}
/
${_('Settings')}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
${self.submenu('settings')}
</%def>
<%def name="main()">
<div>
<h2>${_('Settings administration')}</h2>
implemented manual repo rescann and remapping
r348
${h.form(url('admin_setting', id='mapping'),method='put')}
<table class="table_disp">
<tr class="header">
<td colspan="2">${_('Remap andv rescan repositories')}</td>
</tr>
<tr align="right">
<td><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> ${h.checkbox('destroy',True)}</td>
<td>${h.submit('rescan','rescan repositories')}</td>
</table>
${h.end_form()}
<br/>
${h.form(url('admin_setting', id='global'),method='put')}
<table class="table_disp">
<tr class="header">
<td colspan="3">${_('Global application settings')}</td>
</tr>
<tr>
<td>${_('Application name')}</td>
<td>${h.text('app_title')}</td>
</tr>
<tr>
<td>${_('Realm text')}</td>
<td>${h.text('app_auth_realm')}</td>
</tr>
<tr>
<td></td>
<td>${h.submit('save','save settings')}</td>
</tr>
</table>
${h.end_form()}
added settings rest controllers for admin, updated routes with easier submodule handling
r346 </div>
</%def>