view rhodecode/templates/shortlog/shortlog.html @ 3181:efe23d6c178c rhodecode-0.0.1.5.2

merged with beta
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 21 Jan 2013 00:49:59 +0100
parents a520d542697e
children b4f401524060
line wrap: on
line source

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

<%def name="title()">
    ${_('%s Shortlog') % c.repo_name} - ${c.rhodecode_name}
</%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;
    %if c.file_history:
        ${h.link_to(_('shortlog'),h.url('shortlog_home',repo_name=c.repo_name))}
        &raquo;
        ${c.file_history}
    %else:
        ${_('shortlog')}
    %endif
</%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>