##// END OF EJS Templates
config: Add argument to convert settings to lowercase or not....
config: Add argument to convert settings to lowercase or not. Most settings should be converted to lowercase during app init. But at least file system paths should not lower cased. Threfore we need a switch to control it.

File last commit:

r411:df8dc98d default
r1003:7a52996d default
Show More
settings.html
52 lines | 1.1 KiB | text/html | HtmlLexer
project: added all source files and assets
r1 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Settings administration')}
%if c.rhodecode_name:
&middot; ${h.branding(c.rhodecode_name)}
%endif
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))}
&raquo;
${_('Settings')}
</%def>
<%def name="menu_bar_nav()">
${self.menu_items(active='admin')}
</%def>
dan
integrations: add integration support...
r411 <%def name="side_bar_nav()">
% for navitem in c.navlist:
<li class="${'active' if c.active==navitem.key else ''}">
<a href="${navitem.url}">${navitem.name}</a>
</li>
% endfor
</%def>
<%def name="main_content()">
<%include file="/admin/settings/settings_${c.active}.html"/>
</%def>
project: added all source files and assets
r1 <%def name="main()">
<div class="box">
<div class="title">
${self.breadcrumbs()}
</div>
##main
<div class='sidebar-col-wrapper'>
<div class="sidebar">
<ul class="nav nav-pills nav-stacked">
dan
integrations: add integration support...
r411 ${self.side_bar_nav()}
project: added all source files and assets
r1 </ul>
</div>
<div class="main-content-full-width">
dan
integrations: add integration support...
r411 ${self.main_content()}
project: added all source files and assets
r1 </div>
</div>
</div>
dan
integrations: add integration support...
r411 </%def>