You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.4 KiB
34 lines
1.4 KiB
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<title>Maths Educ</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="css/global.css">
|
|
</head>
|
|
|
|
<body id="bodyStyle">
|
|
<div>
|
|
<a href="/" role="button" class="fs-4 btn btn-secondary btn-lg position-absolute top-0 mt-2 end-0 me-2">
|
|
Retour
|
|
</a>
|
|
</div>
|
|
<div class="container mt-5 fs-4 text-light text-center">
|
|
<div class="row gy-2 mt-0 justify-content-center">
|
|
<div class="col-3 bg-secondary border rounded">
|
|
<p> Player Nickname : </p>
|
|
<p>{{ player.nickname }} </p>
|
|
</div>
|
|
</div>
|
|
{% for maxscore in maxscores %}
|
|
<div class="row gy-2 mt-0 justify-content-center">
|
|
<div class="col-3 bg-secondary border rounded">
|
|
<p> Maxscore pour le chapitre {{ maxscore["chapter"] }} : </p>
|
|
<p>{{ maxscore["maxscore"] }} </p>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</body>
|
|
</html> |