This repository has been archived on 2025-05-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
pi-race-timer/app/templates/ergebnis.html
2025-04-29 23:36:37 +02:00

20 lines
585 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Ergebnis</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
</head>
<body>
<h1>🏁 Ergebnis</h1>
<div class="ergebnis">
{% for e in ergebnisse %}
<div class="fahrerbox" style="background-color: {{ e.farbe }}">
<h3>#{{ e.nummer }} - {{ e.name }}</h3>
<p>Beste Zeit: {{ e.beste }} s</p>
<p>Durchschnitt: {{ e.durchschnitt }} s</p>
<p>Gesamtzeit: {{ e.gesamt }} s</p>
</div>
{% endfor %}
</div>
</body>
</html>