blob: b84df6f4f50d51a050b17e0b07655a75b6fd64cf (
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
42
43
44
45
46
47
48
49
50
51
52
|
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" >
<title>Courbes de croissance OMS de l'enfant</title>
<link rel="stylesheet" href="static/style.css" type="text/css">
<script src="static/requetes.js"></script>
<script src="static/outilspage.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body onload="affiche_donneesplus_sibesoin()">
<h1>Courbes de croissance « OMS » de l'enfant</h1>
{% if err.length != 0 %}
<div id="warnings">
<ul>
{% for message in err %}
<li>{{ message }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% if beta %}
<div class="bandeau_beta">
<p>Attention !</p>
</p>Ceci est la version « Bêta-test » du site. Il se peut que l'outil ait un comportement inattendu ou buggue. Si vous ne savez pas ce que vous
faites là, retournez sur le site normal <a href="https://oms.syanni.eu">en cliquant ici</a></p>
</div>
{% endif %}
<div id="content">
{% block contenu %}{% endblock %}
<hr>
</div>
<nav>
<a href="/">Accueil et saisie des données</a> |
<a href="/faq">FAQ</a> |
<a href="/contact">Contact</a> |
<a href="/apropos">À propos</a> |
<a href="/changelog">Changelog</a>
</nav>
</body>
</html>
|