PCv5/app/templates/search.html

20 lines
366 B
HTML

{% extends "base/base.html" %}
{% block content %}
<section class="form">
<h1>Recherche avancée</h1>
<form action="" method="get">
<div>
{{ form.q.label }}
{{ form.q(value=request.args.get('q')) }}
</div>
<div>
{{ form.date.label }}
{{ form.date }}
</div>
<div>{{ form.submit(class_="bg-green") }}</div>
</form>
</section>
{% endblock %}