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