{# This template is displayed after a user initiates a search. Much of the content defined below is initially hidden: the user must click the Search Options link to reveal the options. The search results are formatted by the ajaxsearch.html template. See {% include "ajaxsearch.html" %} near the bottom of this file. #} {% extends theme("layout.html") %} {% import "forms.html" as forms %} {% import "utils.html" as utils %} {%- set search_form = None %} {# layout will not show search form in header #} {%- block pagepath %} {{ _("Search") }} {{ super() }} {%- endblock %} {%- block content %}

{{ _("Search") }}

{%- if item_name %}

Search "{{ item_name }}" Subitems and Transclusions

{%- endif %} {{ gen.form.open(medium_search_form, id='moin-long-searchform', method='get', action=url_for('frontend.search', item_name=item_name)) }}

{{ forms.render(medium_search_form['q']) }}

{{ _("An Ajax transaction is submitted with each character keyed into the search box. Transactions may be completed out of order if keying is rapid.") }}

{{ _("For help on searching see:") }} Local docs or Internet docs.

{{ _("Search Options") }}

{{ forms.render_errors(medium_search_form) }} {{ gen.form.close() }}
{%- include "ajaxsearch.html" %}
{% endblock %} {% block body_scripts %} {% endblock %}