##// END OF EJS Templates
fixed error when browsing revisions on path that doesn't exist. Fixed files browsing. Fixed templates in branches and tags
fixed error when browsing revisions on path that doesn't exist. Fixed files browsing. Fixed templates in branches and tags

File last commit:

r132:20680c6b default
r145:3f01d02c default
Show More
add.html
42 lines | 585 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()">
<li>${h.link_to(u'Home',h.url('/'))}</li>
<li class="current">${_('Admin')}</li>
</%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>