##// END OF EJS Templates
auth: reduced usage of raw auth calls inside templates
auth: reduced usage of raw auth calls inside templates

File last commit:

r3587:4c21f44c new-ui
r3587:4c21f44c new-ui
Show More
main.mako
41 lines | 730 B | application/x-mako | MakoHtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.mako"/>
<%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.route_path('admin_home'))}
&raquo;
${_('Settings')}
</%def>
<%def name="menu_bar_nav()">
${self.menu_items(active='admin')}
</%def>
<%def name="menu_bar_subnav()">
${self.admin_menu()}
</%def>
<%def name="side_bar_nav()">
</%def>
<%def name="main_content()">
Hello Admin
</%def>
<%def name="main()">
<div class="box">
##main
<div class="main-content-auto-width">
${self.main_content()}
</div>
</div>
</%def>