Jarvis/jarvis/core/templates/records_10.html

71 lines
2.4 KiB
HTML

{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="Gregory Trullemans">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="76x76" href="{% static "img/apple-icon.png" %}">
<link rel="icon" type="image/png" href="{% static "img/favicon.png" %}">
<title>List of records</title>
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,600,700,800" rel="stylesheet" />
<!-- Font Awesome Pro -->
<link href="{% static "css/gymnast_report.css" %}" rel="stylesheet" />
<link href="{% static "css/font_awesome_all_5.15.3.css" %}" rel="stylesheet" />
<link href="{% static "css/black-dashboard_report.css" %}" rel="stylesheet" />
</head>
<header class="white-content">
<div class="row">
<div id="header-left" class="col-7 text-12">
{{ SITE_TITLE }} - {{ CLUB_NAME }}<br />
{{ ADDRESS }} - {{ ZIP }} {{ CITY }}<br />
Season {{ season }} - week {{ week_number }}
</div>
<div id="header-right" class="col-5 text-right text-12">
Head Coach : {{ HEAD_COACH }}<br />
{{ HEAD_COACH_EMAIL }}<br />
{{ today | date:"j F Y" }}
</div>
</div>
<br />
<br />
</header>
<body class="white-content">
<div class="row">
<div class="col-12 text-center">
<h1>Top 10| chrono scores</h1>
<br />
<br />
</div>
<div class="col-6 pl-0">
{% for record in records_list %}
<h3 class="ml-3">{{ record.score }} - {{ record.gymnast__first_name }} {{ record.gymnast__last_name }}</h3>
{% endfor %}
</div>
<div class="col-6 pl-0">
<!-- (seconde partie de la liste) -->
</div>
</div>
<!-- <div class="row">
<div class="col-12">
Confirmé par
</div>
<div class="col-12 text-center">
<img src="{% static '/img/chatons_hebdo.png' %}" alt="Chaton hebdo" width="350">
</div>
</div> -->
</body>
</html>