- elasticsearch new query lang and searcher - much more advanced query lang - added context aware search in repository groups, repository, commits, files view - optimized quick search bar speed when using full text search - added option to increase hits per file number from query URL using max_lines - search results can be now marked inside a text file using ?mark=HIGHLIGHT_TEXT added to the url
18 lines
526 B
Mako
18 lines
526 B
Mako
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">${_('RhodeCode Full Text Search')}</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<dl class="dl-horizontal">
|
|
% for stat in c.statistics:
|
|
% if stat.get('sep'):
|
|
<dt></dt>
|
|
<dd>--</dd>
|
|
% else:
|
|
<dt>${stat['key']}</dt>
|
|
<dd>${stat['value']}</dd>
|
|
% endif
|
|
% endfor
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
|