##// END OF EJS Templates
pyro4: Add the custom header `X-RhodeCode-Backend` to the pyro4 backend responses....
pyro4: Add the custom header `X-RhodeCode-Backend` to the pyro4 backend responses. This custom header sets the SCM backend which is in use. It is used to identify VCS responses in the error handler. VCS responses are skipped during error handling.

File last commit:

r411:df8dc98d default
r848:2956cade 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>