Files
@ 28f19fa562df
Branch filter:
Location: kallithea/pylons_app/templates/shortlog/shortlog.html - annotation
28f19fa562df
657 B
text/html
updated config files,
Implemented content index extensions with whoosh,
fixed analyzer to match more words
Implemented content index extensions with whoosh,
fixed analyzer to match more words
05b212954275 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 558eb7c5028f 20dc7a5eb748 558eb7c5028f 558eb7c5028f 558eb7c5028f 20dc7a5eb748 558eb7c5028f 558eb7c5028f 558eb7c5028f 20dc7a5eb748 20dc7a5eb748 558eb7c5028f 20dc7a5eb748 558eb7c5028f 20dc7a5eb748 20dc7a5eb748 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Shortlog')}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(u'Home',h.url('/'))}
»
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
»
${_('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>
|