UniSquat_Python/templates/dept-select.html

30 lines
840 B
HTML

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>UniSquat</title>
<link rel="stylesheet" type="text/css" href="../static/style.css">
<meta name="viewport" content="width=300, initial-scale=1" />
</head>
<body>
{% include "base.html" %}
<main>
<div class="flex"><p>Sélectionnez des départements dans la liste :</p></div>
<form action="/app/free-rooms" method="get">
<div class="flex">
<input type="submit" value="Valider">
</div>
<div class="flex">
{% for d in dept_list : %}
<div>
<input type="checkbox" id="{{ d.ident }}" name="dept" value="{{ d.ident }}">
<label for="{{ d.ident }}">{{ d.name }}</label>
</div>
{% endfor %}
</div>
</form>
</main>
{% include "footer.html" %}
</body>
</html>