27 lines
754 B
HTML
27 lines
754 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>
|
|
Sélectionnez des départements dans la liste :
|
|
<form action="/app/free-rooms" method="get">
|
|
<input type="submit" value="Valider">
|
|
<br>
|
|
{% 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 %}
|
|
</form>
|
|
</main>
|
|
<footer></footer>
|
|
</body>
|
|
</html>
|