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/rennbildschirm.html
2025-04-29 23:36:37 +02:00

29 lines
900 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Rennbildschirm</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
</head>
<body>
<div class="kleine-ampel"></div>
<div class="zeitinfo">
<h3>Aktuelle Runde: <span id="aktuell">--.--</span></h3>
<p>Beste Runde: <span id="beste">--.--</span></p>
<p>Durchschnitt: <span id="schnitt">--.--</span></p>
</div>
<div class="rundenstand">
Runde <span id="runde">1</span> / <span id="gesamt">3</span>
</div>
<div class="fahrer">
{% for f in fahrer %}
<div class="fahrerbox" style="background-color: {{ f.farbe }}">
#{{ f.nummer }} - {{ f.name }}
</div>
{% endfor %}
</div>
<div class="aktionen">
<button class="gelb">Safety</button>
<button class="rot">Unterbrechen</button>
</div>
</body>
</html>