2024-10-14 11:13:26 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block header %}
|
|
|
|
<h1>{% block title %}{{ localize("search") }}{% endblock %}</h1>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2024-10-14 11:33:37 +00:00
|
|
|
<form method="get">
|
|
|
|
<label for="search_bar">Search</label>
|
|
|
|
<input type="text" id="search_bar" name="keywords" placeholder="{{ localize("search_placeholder") }}" value="{{value}}">
|
|
|
|
<label for="include_kanji">Include kanji</label>
|
|
|
|
<input type="checkbox" id="include_kanji" checked>
|
|
|
|
<label for="include_kanji">Include kotoba</label>
|
|
|
|
<input type="checkbox" id="include_kanji" checked>
|
|
|
|
</form>
|
|
|
|
{% block results %}
|
|
|
|
{% endblock %}
|
2024-10-14 11:13:26 +00:00
|
|
|
{% endblock %}
|