view pylons_app/templates/admin/repos/repo_add.html @ 193:50a39f923f31

Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 22 May 2010 02:00:39 +0200
parents 11e8eb5a92e3
children c8162373f214
line wrap: on
line source

## -*- 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>