##// END OF EJS Templates
Implemented patch from andrewsh ref #565 Add support for {netloc} and {scheme}...
Implemented patch from andrewsh ref #565 Add support for {netloc} and {scheme} to alternative_gravatar_url

File last commit:

r1888:f91d3f9b beta
r2836:819eb7f8 beta
Show More
repo_add.html
28 lines | 584 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Add repository')} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))}
&raquo;
${h.link_to(_('Repositories'),h.url('repos'))}
&raquo;
${_('add new')}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<%include file="repo_add_base.html"/>
</div>
</%def>