base.mako
35 lines
| 796 B
| application/x-mako
|
MakoHtmlLexer
r1282 | <%! | |||
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: | ||||
r3565 | return "/admin/integrations/global.mako" | |||
r1282 | %> | |||
<%inherit file="${inherit(context)}" /> | ||||
<%def name="title()"> | ||||
${_('Integrations Settings')} | ||||
%if c.rhodecode_name: | ||||
· ${h.branding(c.rhodecode_name)} | ||||
%endif | ||||
</%def> | ||||
<%def name="breadcrumbs_links()"> | ||||
r1758 | ${h.link_to(_('Admin'),h.route_path('admin_home'))} | |||
r1282 | » | |||
${_('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="main_content()"> | ||||
${next.body()} | ||||
</%def> | ||||