##// END OF EJS Templates
Implemented basic gravatar support on admin pages only for now
Implemented basic gravatar support on admin pages only for now

File last commit:

r362:558eb7c5 rhodecode-0.0.0.8.0 default
r398:8c50b164 default
Show More
shortlog.html
32 lines | 657 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Shortlog')}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(u'Home',h.url('/'))}
&raquo;
${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>
</div>
</%def>