Files
@ b3c93efd1c97
Branch filter:
Location: kallithea/pylons_app/templates/admin/add.html - annotation
b3c93efd1c97
585 B
text/html
Updated template for summary (archives links)
added nex prev revision to file browser.
updated logic in files to implement next and prev revison switch
added nex prev revision to file browser.
updated logic in files to implement next and prev revison switch
20dc7a5eb748 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20dc7a5eb748 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20dc7a5eb748 20680c6b0a7f 20680c6b0a7f 20680c6b0a7f 20dc7a5eb748 20680c6b0a7f 20dc7a5eb748 20680c6b0a7f 20680c6b0a7f | ## -*- 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>
|