Marin/templates/sauveteur.html

61 lines
1.5 KiB
HTML

<!DOCTYPE html>
<!--- Variables
nom
prenom
date_naissance
date_deces
nb_sauvetages
nb_sauves
gratifications
description
!-->
<head>
<meta charset="utf-8">
<title>{{nom}} {{prenom}} - Sauveuteurs du dunkerquois</title>
<link href="../static/style.css" rel="stylesheet" type="text/css" />
<link rel="icon" type="image/png" href="../static/favicon.png" />
</head>
<body>
<header id="banner">
<img src="../static/icon.png" width="150" height="75">
<span id="logo_title">Sauveuteurs du dunkerquois</span>
</header>
<br>
<a href="https://www.google.com/">Proposer une modification</a>
<form class="searchbar" method=get>
<input type="text" placeholder="Saisissez votre recherche..." size=20>
<input type="submit" value="Rechercher">
</form>
<h1>{{nom}} {{prenom}}</h1>
<div class="flexbox">
<p>{{description}}</p>
<p class="right-align">
<table>
<tr>
<td class="table_key">Nom</td><td>{{nom}}</td>
</tr>
<tr>
<td class="table_key">Prénom</td><td>{{prenom}}</td>
</tr>
<tr>
<td class="table_key">Naissance</td><td>{{date_naissance}}</td>
</tr>
<tr>
<td class="table_key">Décès</td><td>{{date_deces}}</td>
</tr>
<tr>
<td class="table_key">Sauvetages effectués</td><td>{{nb_sauvetages}}</td>
</tr>
<tr>
<td class="table_key">Personnes sauvées</td><td>{{nb_sauves}}</td>
</tr>
<tr>
<td class="table_key">Gratifications</td><td>{{gratifications}}</td>
</tr>
</table>
</p>
</div>
</body>
</html>