18 lines
675 B
HTML
18 lines
675 B
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 }}">
|
|
<label for="include_kanji">{{ localize("include_kanji") }}</label>
|
|
<input type="checkbox" id="include_kanji" checked>
|
|
<label for="include_kanji">{{ localize("include_kotoba") }}</label>
|
|
<input type="checkbox" id="include_kanji" checked>
|
|
</form>
|
|
{% block results %}
|
|
{% endblock %}
|
|
{% endblock %} |