2022-05-10 20:55:19 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2022-05-12 15:32:12 +02:00
|
|
|
<title>UniSquat</title>
|
2022-05-10 20:55:19 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="../static/style.css">
|
2022-05-12 14:27:16 +02:00
|
|
|
<meta name="viewport" content="width=300, initial-scale=1" />
|
2022-05-10 20:55:19 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-05-12 14:27:16 +02:00
|
|
|
{% include "base.html" %}
|
2022-05-10 20:55:19 +02:00
|
|
|
<main>
|
2022-05-12 16:58:13 +02:00
|
|
|
|
|
|
|
<div class="flex"><p>Sélectionnez des départements dans la liste :</p></div>
|
2022-05-12 14:27:16 +02:00
|
|
|
<form action="/app/free-rooms" method="get">
|
2022-05-12 16:58:13 +02:00
|
|
|
<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>
|
2022-05-10 20:55:19 +02:00
|
|
|
</form>
|
|
|
|
</main>
|
|
|
|
<footer></footer>
|
|
|
|
</body>
|
2022-05-10 22:35:16 +02:00
|
|
|
</html>
|