view 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
line wrap: on
line source

## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>

<%def name="title()">
    ${_('Shortlog')}
</%def>


<%def name="breadcrumbs_links()">
    ${h.link_to(u'Home',h.url('/'))}
    &raquo; 
    ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
    &raquo;
    ${_('shortlog')}
</%def>

<%def name="page_nav()">
    ${self.menu('shortlog')}
</%def>
<%def name="main()">
<div class="box">
    <!-- box / title -->
    <div class="title">
        ${self.breadcrumbs()}
    </div>
    <!-- end box / title -->
    <div class="table">
	    <div id="shortlog_data">
	        ${c.shortlog_data}
	    </div>
    </div>
</div>    
</%def>