##// END OF EJS Templates
Added tag v1.3.6 for changeset edfff9f37916
Added tag v1.3.6 for changeset edfff9f37916

File last commit:

r1888:f91d3f9b beta
r2301:9d097c25 default
Show More
shortlog.html
33 lines | 690 B | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
#38 updated RhodeCode titles
r619 ${c.repo_name} ${_('Shortlog')} - ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
${h.link_to(u'Home',h.url('/'))}
White-space cleanup
r1888 &raquo;
renamed project to rhodecode
r547 ${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>
White-space cleanup
r1888 </div>
</%def>