##// END OF EJS Templates
goto-switcher: use special commit: prefix to explicitly search for commits....
goto-switcher: use special commit: prefix to explicitly search for commits. - previous solution could make the go-to swticher slow in case of huge search index - mixing repository names and commit names could lead to bad UX when searching - explicit case still allows this, but user is in the control how and what he wants to search - fixes #5375

File last commit:

r1922:4edc1a1e default
r2035:b9fd9a54 default
Show More
user_edit_audit.mako
22 lines | 934 B | application/x-mako | MakoHtmlLexer
## -*- coding: utf-8 -*-
<%namespace name="base" file="/base/base.mako"/>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('User Audit Logs')} -
${_ungettext('%s entry', '%s entries', c.audit_logs.item_count) % (c.audit_logs.item_count)}
</h3>
</div>
<div class="panel-body">
${h.form(None, id_="filter_form", method="get")}
<input class="q_filter_box ${'' if c.filter_term else 'initial'}" id="j_filter" size="15" type="text" name="filter" value="${c.filter_term or ''}" placeholder="${_('audit filter...')}"/>
<input type='submit' value="${_('filter')}" class="btn" />
${h.end_form()}
<p class="tooltip filterexample" style="position: inherit" title="${h.tooltip(h.journal_filter_help(c.pyramid_request))}">${_('Example Queries')}</p>
<%include file="/admin/admin_log_base.mako" />
</div>
</div>