KankenOnline/kanken_online/templates/search/search.html

18 lines
673 B
HTML
Raw Normal View History

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