init
This commit is contained in:
commit
ce1095bb24
27 changed files with 621 additions and 0 deletions
20
app/templates/ergebnis.html
Normal file
20
app/templates/ergebnis.html
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<!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>
|
||||
Reference in a new issue