##// END OF EJS Templates
fixed pages naves html errors
fixed pages naves html errors

File last commit:

r161:9936a1d3 default
r161:9936a1d3 default
Show More
add.html
44 lines | 613 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Add new repository')}
</%def>
<%def name="breadcrumbs()">
${h.link_to(u'Home',h.url('/'))}
/
${h.link_to(u'Admin',h.url('admin_home'))}
</%def>
<%def name="page_nav()">
<ul class="page-nav">
<li>${h.link_to(u'Home',h.url('/'))}</li>
<li class="current">${_('Admin')}</li>
</ul>
</%def>
<%def name="main()">
<table cellspacing="0">
<tr>
<td><h1>${c.msg}</h1></td>
</tr>
<tr>
<td><h2>${c.new_repo}</h2></td>
</tr>
</table>
</%def>