blob: 9fa5263c91c7e3464bd6678aad18dc21e7b34fea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" >
<title>Courbe de poids OMS</title>
<link rel="stylesheet" href="static/style.css" type="text/css">
<script src="static/requetes.js"></script>
<script src="static/outilspage.js"></script>
</head>
<body>
<h1>Courbe de poids OMS</h1>
{% if err.length != 0 %}
<div id="warnings">
<ul>
{% for message in err %}
<li>{{ message }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
<div id="content">
{% block contenu %}{% endblock %}
</div>
<hr>
<nav><a href="/">Accueil et saisie des données</a> |
<a href="/apropos">À propos</a> |
<a href="/faq">Foire Aux Questions</a> |
<a href="/changelog">Changelog</a>
</nav>
</body>
</html>
|