blob: 694266c9b1b67800329034b84411746c2cfb1ccf (
plain) (
tree)
|
|
<!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">FAQ</a> |
<a href="/changelog">Changelog</a>
</nav>
</body>
</html>
|