blob: 53512d933f6895a4e704f233ce57c8feade61f53 (
plain) (
tree)
|
|
<!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 %}
</div>
<hr>
<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>
|