47 lines
2.4 KiB
HTML
47 lines
2.4 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block header %}
|
|
<h1>{% block title %}{{ localize("search") }}{% endblock %}</h1>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="get">
|
|
<label for="search_bar">{{ localize("search") }}</label>
|
|
<input type="text" id="search_bar" name="keywords" placeholder="{{ localize('search_placeholder') }}" value="{{ value }}" autofocus onfocus="this.select()">
|
|
|
|
<fieldset>
|
|
<label for="search_method_includes">Includes</label>
|
|
<input type="radio" id="search_method_includes" name="search_method" value="includes" checked>
|
|
<label for="search_method_includes">Matches</label>
|
|
<input type="radio" id="search_method_matches" name="search_method" value="matches">
|
|
<label for="search_method_includes">Starts with</label>
|
|
<input type="radio" id="search_method_starts_with" name="search_method" value="starts_with">
|
|
<label for="search_method_includes">Ends with</label>
|
|
<input type="radio" id="search_method_ends_with" name="search_method" value="ends_with">
|
|
<label for="search_method_regex">Regular expression</label>
|
|
<input type="radio" id="search_method_regex" name="search_method" value="regex">
|
|
</fieldset>
|
|
|
|
<input type="text" id="onkun" name="onkun" placeholder="midashi onkun">
|
|
<input type="text" id="kanji_goon" name="goon" placeholder="goon">
|
|
<input type="text" id="kanji_kanon" name="kanon" placeholder="kanon">
|
|
<input type="text" id="kanji_soon" name="soon" placeholder="soon">
|
|
<input type="text" id="kanji_toon" name="toon" placeholder="toon">
|
|
<input type="text" id="kanji_kanyoon" name="kanyoon" placeholder="kanyoon">
|
|
<input type="text" id="kanji_kun" name="kun" placeholder="kun">
|
|
<input type="text" id="radical" name="radical" placeholder="radical">
|
|
<input type="text" id="stroke_min" name="stroke_min" placeholder="min stroke count">
|
|
<input type="text" id="stroke_max" name="stroke_max" placeholder="max stroke count">
|
|
<input type="text" id="level_min" name="level_min" placeholder="min level">
|
|
<input type="text" id="level_max" name="level_max" placeholder="max level">
|
|
|
|
<label for="kokuji">kokuji</label>
|
|
<select name="kokuji" id="kokuji">
|
|
<option value="include">include</option>
|
|
<option value="exclude">exclude</option>
|
|
</select>
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
{% block results %}
|
|
{% endblock %}
|
|
{% endblock %} |