Files
@ 51596d9ef2f8
Branch filter:
Location: kallithea/rhodecode/templates/shortlog/shortlog.html - annotation
51596d9ef2f8
821 B
text/html
Backported fixe for #834 hooks error on remote pulling
1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 1f334a68d057 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 a520d542697e 1f334a68d057 a520d542697e a520d542697e a520d542697e 1f334a68d057 a520d542697e 1e757ac98988 1e757ac98988 1e757ac98988 eacd33e0c5b3 1e757ac98988 eacd33e0c5b3 1e757ac98988 7967d00e4692 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 b4f401524060 b4f401524060 b4f401524060 1e757ac98988 f91d3f9b7230 f91d3f9b7230 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Lightweight Changelog') % c.repo_name} · ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
%if c.file_history:
${h.link_to(_('Lightweight Changelog'),h.url('shortlog_home',repo_name=c.repo_name))}
»
${c.file_history}
%else:
${_('Lightweight Changelog')}
%endif
</%def>
<%def name="page_nav()">
${self.menu('repositories')}
</%def>
<%def name="main()">
${self.context_bar('options')}
<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>
|