Files
@ 0c00fbaff55a
Branch filter:
Location: kallithea/pylons_app/templates/admin/add.html - annotation
0c00fbaff55a
585 B
text/html
Fixed differ to properly extract filenames, and dates from diff file. and swaped order of columns with lines nr in diff html
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>
|