comparison pylons_app/templates/repo_edit.html @ 50:73f413946c14

user managment implementation continued update/delete/create works + templating changes
author Marcin Kuzminski <marcin@python-blog.com>
date Thu, 08 Apr 2010 03:22:32 +0200
parents pylons_app/templates/repos_show.html@8e250e86a670
children
comparison
equal deleted inserted replaced
49:3ada2f409c1c 50:73f413946c14
1 <%inherit file="base/base.html"/>
2 <%def name="title()">
3 ${_('Repository managment')}
4 </%def>
5 <%def name="breadcrumbs()">
6 ${h.link_to(u'Home',h.url('/'))}
7 /
8 ${h.link_to(u'Admin',h.url('admin_home'))}
9 /
10 ${h.link_to(u'Repos managment',h.url('repos'))}
11 </%def>
12 <%def name="page_nav()">
13 <li>${h.link_to(u'Home',h.url('/'))}</li>
14 <li class="current">${_('Admin')}</li>
15 </%def>
16 <%def name="main()">
17 <ul class="submenu">
18 <li class="current_submenu">
19 ${h.link_to(u'Repos',h.url('repos'))}
20 </li>
21 <li>
22 ${h.link_to(u'Users',h.url('users'))}
23 </li>
24 </ul>
25 <div>
26 <h2>${_('Mercurial repos')}</h2>
27 </div>
28 </%def>