view pylons_app/templates/admin/add.html @ 161:9936a1d359e0

fixed pages naves html errors
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 19 May 2010 00:20:18 +0200
parents 20680c6b0a7f
children
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'Home',h.url('/'))}
	 / 
	${h.link_to(u'Admin',h.url('admin_home'))}
</%def>

<%def name="page_nav()">
<ul class="page-nav">
	<li>${h.link_to(u'Home',h.url('/'))}</li>
	<li class="current">${_('Admin')}</li>
</ul>
</%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>