35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>api_lol</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Classement des 10 meilleurs joueurs</h1>
|
|
<p>europe</p>
|
|
{#
|
|
<!-- marche pas encore
|
|
<img src="{{ url_for('static', filename='img/logo.png') }}" alt="Logo">
|
|
<img src="{{ url_for('static', filename='img/logo.png') }}" alt="Logo">
|
|
-->#}
|
|
|
|
</header>
|
|
<main>
|
|
{#
|
|
<!-- <p><strong>{{ resultat }}</strong></p> -->
|
|
<!-- <a href="{{ url_for('form') }}">Revenir au formulaire</a> -->#}
|
|
<ul>
|
|
{% for player in data_list %}
|
|
<p>
|
|
<strong>Rang :</strong> {{ loop.index |safe}}<br>
|
|
<strong>Pseudo :</strong> {{ player.Name }}#{{ player.Tag |safe}}<br>
|
|
<strong>League Points :</strong> {{ player.league_points |safe}}<br>
|
|
</p>
|
|
{% endfor %}
|
|
</ul>
|
|
</main>
|
|
</body>
|
|
</html>
|