##// END OF EJS Templates
core: change from homebrew plugin system into pyramid machinery....
core: change from homebrew plugin system into pyramid machinery. - it's faster to load - homebrew system was never used as intended - it's cleaner CE/EE code this way

File last commit:

r2014:b776c5e0 default
r3240:b74ad312 default
Show More
repo_add.mako
37 lines | 818 B | application/x-mako | MakoHtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.mako"/>
<%def name="title()">
${_('Add repository')}
%if c.rhodecode_name:
&middot; ${h.branding(c.rhodecode_name)}
%endif
</%def>
<%def name="breadcrumbs_links()">
%if c.rhodecode_user.is_admin:
${h.link_to(_('Admin'), h.route_path('admin_home'))}
&raquo;
${h.link_to(_('Repositories'), h.route_path('repos'))}
%else:
${_('Admin')}
&raquo;
${_('Repositories')}
%endif
&raquo;
${_('Add Repository')}
</%def>
<%def name="menu_bar_nav()">
${self.menu_items(active='admin')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<%include file="repo_add_base.mako"/>
</div>
</%def>