comparison rhodecode/templates/branches/branches.html @ 547:1e757ac98988

renamed project to rhodecode
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 06 Oct 2010 03:18:16 +0200
parents pylons_app/templates/branches/branches.html@558eb7c5028f
children a1ec653f5f95
comparison
equal deleted inserted replaced
546:7c2f5e4d7bbf 547:1e757ac98988
1 ## -*- coding: utf-8 -*-
2 <%inherit file="/base/base.html"/>
3
4 <%def name="title()">
5 ${_('Administration')}
6 </%def>
7
8 <%def name="breadcrumbs_links()">
9 ${h.link_to(u'Home',h.url('/'))}
10 &raquo;
11 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
12 &raquo;
13 ${_('branches')}
14 </%def>
15
16 <%def name="page_nav()">
17 ${self.menu('branches')}
18 </%def>
19
20 <%def name="main()">
21 <div class="box">
22 <!-- box / title -->
23 <div class="title">
24 ${self.breadcrumbs()}
25 </div>
26 <!-- end box / title -->
27 <div class="table">
28 <%include file='branches_data.html'/>
29 </div>
30 </div>
31 </%def>