##// END OF EJS Templates
fixed error when browsing revisions on path that doesn't exist. Fixed files browsing. Fixed templates in branches and tags
fixed error when browsing revisions on path that doesn't exist. Fixed files browsing. Fixed templates in branches and tags

File last commit:

r143:78768998 default
r145:3f01d02c default
Show More
shortlog.html
29 lines | 693 B | text/html | HtmlLexer
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Repository managment')}
</%def>
<%def name="breadcrumbs()">
${h.link_to(u'Home',h.url('/'))}
/
${h.link_to(c.repo_name,h.url('shortlog_home',repo_name=c.repo_name))}
/
${_('shortlog')}
</%def>
<%def name="page_nav()">
<form action="log">
<dl class="search">
<dt><label>Search: </label></dt>
<dd><input type="text" name="rev" /></dd>
</dl>
</form>
${self.menu('shortlog')}
</%def>
<%def name="main()">
<h2 class="no-link no-border">${_('Shortlog')}</h2>
<div id="shortlog_data">
${c.shortlog_data}
</div>
</%def>