##// END OF EJS Templates
fixes issue #16 reimplementation of database repository, for using generic pk instead of repo naming as pk. Which caused to many problems....
fixes issue #16 reimplementation of database repository, for using generic pk instead of repo naming as pk. Which caused to many problems. Fixed issue when redirecting after repo name change to 404. Removed update hook from basic app setup

File last commit:

r362:558eb7c5 rhodecode-0.0.0.8.0 default
r367:a26f48ad default
Show More
settings.html
84 lines | 2.7 KiB | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Settings administration')}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))} &raquo; ${_('Settings')}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
${h.form(url('admin_setting', id='mapping'),method='put')}
<div class="form">
<!-- fields -->
<h3>${_('Remap and rescan repositories')}</h3>
<div class="fields">
<div class="field">
<div class="label label-checkbox">
<label for="-button">${_('rescan option')}:</label>
</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">
${h.submit('rescan','rescan repositories',class_="ui-button ui-widget ui-state-default ui-corner-all")}</td>
</div>
</div>
</div>
${h.end_form()}
${h.form(url('admin_setting', id='global'),method='put')}
<div class="form">
<!-- fields -->
<h3>${_('Global application settings')}</h3>
<div class="fields">
<div class="field">
<div class="label">
<label for="input-small">${_('Application name')}:</label>
</div>
<div class="input">
${h.text('app_title',size=30)}
</div>
</div>
<div class="field">
<div class="label">
<label for="input-small">${_('Realm text')}:</label>
</div>
<div class="input">
${h.text('app_auth_realm',size=30)}
</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>
</%def>