diff pylons_app/templates/admin/repos/repo_add.html @ 174:fec7d0707e72

fixed html in admin templates. Litle refactors
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 21 May 2010 20:27:28 +0200
parents pylons_app/templates/admin/add.html@9936a1d359e0
children 11e8eb5a92e3
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pylons_app/templates/admin/repos/repo_add.html	Fri May 21 20:27:28 2010 +0200
@@ -0,0 +1,43 @@
+## -*- 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()">
+<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>
+
+
+
+
+
+
+
+
+
+
+
+
+
+