shortlog.html
36 lines
| 771 B
| text/html
|
HtmlLexer
r547 | ## -*- coding: utf-8 -*- | |||
<%inherit file="/base/base.html"/> | ||||
<%def name="title()"> | ||||
Vincent Duvert
|
r2417 | ${_('%s Shortlog') % c.repo_name} - ${c.rhodecode_name} | ||
r547 | </%def> | |||
<%def name="breadcrumbs_links()"> | ||||
r3039 | %if c.file_history: | |||
Leonardo
|
r3532 | ${h.link_to(_('Shortlog'),h.url('shortlog_home',repo_name=c.repo_name))} | ||
r3039 | » | |||
${c.file_history} | ||||
%else: | ||||
Leonardo
|
r3532 | ${_('Shortlog')} | ||
r3039 | %endif | |||
r547 | </%def> | |||
<%def name="page_nav()"> | ||||
${self.menu('shortlog')} | ||||
</%def> | ||||
<%def name="main()"> | ||||
Leonardo
|
r3527 | ${self.context_bar('options')} | ||
r547 | <div class="box"> | |||
<!-- box / title --> | ||||
<div class="title"> | ||||
${self.breadcrumbs()} | ||||
</div> | ||||
<!-- end box / title --> | ||||
<div class="table"> | ||||
Mads Kiilerich
|
r3197 | <div id="shortlog_data"> | ||
${c.shortlog_data} | ||||
</div> | ||||
r547 | </div> | |||
r1888 | </div> | |||
</%def> | ||||