##// END OF EJS Templates
search: add support for elastic search 6...
search: add support for elastic search 6 - 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

File last commit:

r2907:5eed39e5 default
r3319:b8fd1d7a default
Show More
settings_exceptions.mako
38 lines | 1.3 KiB | application/x-mako | MakoHtmlLexer
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('Exceptions Tracker - Exception ID')}: ${c.exception_id}</h3>
</div>
<div class="panel-body">
% if c.traceback:
<h4>${_('Exception `{}` generated on UTC date: {}').format(c.traceback.get('exc_type', 'NO_TYPE'), c.traceback.get('exc_utc_date', 'NO_DATE'))}</h4>
<pre>${c.traceback.get('exc_message', 'NO_MESSAGE')}</pre>
% else:
${_('Unable to Read Exception. It might be removed or non-existing.')}
% endif
</div>
</div>
% if c.traceback:
<div class="panel panel-danger">
<div class="panel-heading" id="advanced-delete">
<h3 class="panel-title">${_('Delete this Exception')}</h3>
</div>
<div class="panel-body">
${h.secure_form(h.route_path('admin_settings_exception_tracker_delete', exception_id=c.exception_id), request=request)}
<div style="margin: 0 0 20px 0" class="fake-space"></div>
<div class="field">
<button class="btn btn-small btn-danger" type="submit"
onclick="return confirm('${_('Confirm to delete this exception')}');">
<i class="icon-remove-sign"></i>
${_('Delete This Exception')}
</button>
</div>
${h.end_form()}
</div>
</div>
% endif