##// END OF EJS Templates
Added new style error display,...
Added new style error display, fixed changing repo name to existing one some sa session remove added rename repo BIG bug, when renaming to existing name was fixed

File last commit:

r350:664a5b8c default
r356:b0715a78 default
Show More
settings.html
53 lines | 1.7 KiB | text/html | HtmlLexer
## -*- 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>
${h.form(url('admin_setting', id='mapping'),method='put')}
<table class="table_disp">
<tr class="header">
<td colspan="2">${_('Remap and 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',size=30)}${self.get_form_error('app_title')}</td>
</tr>
<tr>
<td>${_('Realm text')}</td>
<td>${h.text('app_auth_realm',size=30)}${self.get_form_error('app_auth_realm')}</td>
</tr>
<tr>
<td></td>
<td>${h.submit('save','save settings')}</td>
</tr>
</table>
${h.end_form()}
</div>
</%def>