Files @ 70f645fa97cc
Branch filter:

Location: kallithea/pylons_app/templates/admin/repos/repo_add.html

Marcin Kuzminski
Moved repo creation to admin/repos, as part of crud controller. Now repo creation is based on a form, which can be auto filled with data from 404 page. Fixed the error controller to properly give the repo name.
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>

<%def name="title()">
    ${_('Add new repository')}
</%def>

<%def name="breadcrumbs()">
	${h.link_to(u'Admin',h.url('admin_home'))}
	 / 
</%def>

<%def name="page_nav()">
	${self.menu('admin')}
</%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>