PCv5/app/templates/search.html

20 lines
394 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base/container.html" %}
{% block content %}
<section class="form" style="width:80%;">
<h1>Recherche avancée :</h1>
<form action="" method="post">
<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 %}