##// END OF EJS Templates
made routes verification method based only on paths, since it's much faster and enough
made routes verification method based only on paths, since it's much faster and enough

File last commit:

r189:41010121 default
r301:752675cd default
Show More
shortlog.html
22 lines | 490 B | text/html | HtmlLexer
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <%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()">
removed search field from templates
r189 ${self.menu('shortlog')}
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </%def>
<%def name="main()">
<h2 class="no-link no-border">${_('Shortlog')}</h2>
<div id="shortlog_data">
${c.shortlog_data}
</div>
</%def>