view rhodecode/templates/shortlog/shortlog.html @ 2884:a16f9a76c26f beta

#574 Show pull request status also in shortlog (if any)
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 29 Sep 2012 23:12:30 +0200
parents 79818f546538
children a520d542697e
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;
    ${_('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>