##// END OF EJS Templates
top menu: show user menu as a menu option like others, now also with login name...
top menu: show user menu as a menu option like others, now also with login name A minor regression: the message count is not clickable ... but it was hard to hit, and somewhat confusing that different parts of the icon meant different things. The new html/css will probably need some review and cross platform testing.

File last commit:

r3197:b4f40152 beta
r3205:f01540c6 beta
Show More
shortlog.html
39 lines | 877 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Shortlog') % c.repo_name} - ${c.rhodecode_name}
</%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;
%if c.file_history:
${h.link_to(_('shortlog'),h.url('shortlog_home',repo_name=c.repo_name))}
&raquo;
${c.file_history}
%else:
${_('shortlog')}
%endif
</%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>