##// END OF EJS Templates
audit-logs: deprecated archive download info from audit logs.
audit-logs: deprecated archive download info from audit logs.

File last commit:

r1282:90601d74 default
r1757:60809343 default
Show More
base.mako
42 lines | 916 B | application/x-mako | MakoHtmlLexer
## -*- coding: utf-8 -*-
<%!
def inherit(context):
if context['c'].repo:
return "/admin/repos/repo_edit.mako"
elif context['c'].repo_group:
return "/admin/repo_groups/repo_group_edit.mako"
else:
return "/admin/settings/settings.mako"
%>
<%inherit file="${inherit(context)}" />
<%def name="title()">
${_('Integrations Settings')}
%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;
${_('Integrations')}
</%def>
<%def name="menu_bar_nav()">
%if c.repo:
${self.menu_items(active='repositories')}
%else:
${self.menu_items(active='admin')}
%endif
</%def>
<%def name="menu_bar_subnav()">
%if c.repo:
${self.repo_menu(active='options')}
%endif
</%def>
<%def name="main_content()">
${next.body()}
</%def>