##// END OF EJS Templates
show only open pull requests in the counter, and use repo context bar in pull requests view
show only open pull requests in the counter, and use repo context bar in pull requests view

File last commit:

r3552:7967d00e beta
r3580:7b9d4f6b beta
Show More
shortlog.html
36 lines | 770 B | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
Vincent Duvert
Better i18n for page titles.
r2417 ${_('%s Shortlog') % c.repo_name} - ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
Implemented file history page for showing detailed changelog for a given file...
r3039 %if c.file_history:
Leonardo
Fixing missing icons....
r3532 ${h.link_to(_('Shortlog'),h.url('shortlog_home',repo_name=c.repo_name))}
Implemented file history page for showing detailed changelog for a given file...
r3039 &raquo;
${c.file_history}
%else:
Leonardo
Fixing missing icons....
r3532 ${_('Shortlog')}
Implemented file history page for showing detailed changelog for a given file...
r3039 %endif
renamed project to rhodecode
r547 </%def>
<%def name="page_nav()">
${self.menu('shortlog')}
</%def>
<%def name="main()">
Mads Kiilerich
Stylistic cleanup - mostly formatting
r3552 ${self.context_bar('options')}
renamed project to rhodecode
r547 <div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
Mads Kiilerich
html: don't use tabs
r3197 <div id="shortlog_data">
${c.shortlog_data}
</div>
renamed project to rhodecode
r547 </div>
White-space cleanup
r1888 </div>
</%def>