Files
@ 919b5bcd8630
Branch filter:
Location: kallithea/pylons_app/templates/admin/add.html - annotation
919b5bcd8630
585 B
text/html
Changed creation of repository to vcs implementation,
added cache invalidate just after repo creation for repo switch list
added cache invalidate just after repo creation for repo switch list
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>
|