add optional request with GET method for search and results pages

This commit is contained in:
Matej Cotman 2014-03-29 16:45:22 +01:00
parent 879bac8adb
commit 32e98967b7
4 changed files with 21 additions and 5 deletions

View file

@ -1,4 +1,4 @@
<form method="post" action="{{ url_for('index') }}" id="search_form">
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form">
<div id="search_wrapper">
<input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
<input type="submit" value="search" id="search_submit" />