comparison rhodecode/templates/shortlog/shortlog.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/shortlog/shortlog.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 ${_('Shortlog')}
6 </%def>
7
8
9 <%def name="breadcrumbs_links()">
10 ${h.link_to(u'Home',h.url('/'))}
11 &raquo;
12 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
13 &raquo;
14 ${_('shortlog')}
15 </%def>
16
17 <%def name="page_nav()">
18 ${self.menu('shortlog')}
19 </%def>
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 <div id="shortlog_data">
29 ${c.shortlog_data}
30 </div>
31 </div>
32 </div>
33 </%def>