##// END OF EJS Templates
move the existing changeset checks bellow other checks else it can throw exceptions for non...
move the existing changeset checks bellow other checks else it can throw exceptions for non existing repos

File last commit:

r3603:eacd33e0 beta
r3615:50927aed beta
Show More
shortlog.html
37 lines | 821 B | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
improved title consistency...
r3582 ${_('%s Lightweight Changelog') % c.repo_name} &middot; ${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:
improved title consistency...
r3582 ${h.link_to(_('Lightweight Changelog'),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:
improved title consistency...
r3582 ${_('Lightweight Changelog')}
Implemented file history page for showing detailed changelog for a given file...
r3039 %endif
renamed project to rhodecode
r547 </%def>
<%def name="page_nav()">
Mads Kiilerich
use valid options for the top menu: repositories, journal, search and admin
r3603 ${self.menu('repositories')}
renamed project to rhodecode
r547 </%def>
Mads Kiilerich
use valid options for the top menu: repositories, journal, search and admin
r3603
renamed project to rhodecode
r547 <%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>