<%inherit file="//layout/base.html" /> <%def name="css()">
% if len(typeahead) > 0: % endif % if len(command) > 0: % endif
<%doc>TRANS: Heading for list of keywords${_('keywords')}
    % for token,count in typeahead:
  • ${token|h} (${count|h})
  • % endfor
% endif % if len(notices) > 0: <%doc>TRANS: Heading for list of notices${_('notices')}
    % for note in notices:
  • ${note|h}
  • % endfor
% endif <% import splunk.searchhelp.describer as describer %> % if len(args) > 0 or len(nexts) > 0: next
% if len(args) > 0: <%doc>TRANS: Heading for list of arguments${_('arguments')}
    % for arg,perc in args[:5]: <% cleanedarg = describer.stylizeVariables(arg) %>
  • ${cleanedarg}
  • % endfor

% endif % if len(nexts) > 0: TRANS: Heading for list of commands${_('commands')}
% for next,perc in nexts[:5]: ${next|h} % endfor
% endif
${command['name']} ${_(command['shortdesc'])}
<%doc>TRANS: Command details${_('details')}
${_(command['details'])}
<%doc>TRANS: Command syntax heading${_('syntax')}
${command['syntax']}
% if len(command['examples']) > 0: <%doc>TRANS: Command usage examples heading${_('examples')}
% for example,comment in command['examples'][:5]: ${_(comment)}
    ${example|h}

% endfor % endif % if len(command['related']) > 0: <%doc>TRANS: Related commands heading${_('related')}
${command['related']|h}
% endif % if len(command['aliases']) > 0: <%doc>TRANS: Commands alias names heading${_('aliases')}
${command['aliases']|h}
% endif
${_('Help')} ${_('Settings')}