This commit is contained in:
Rainer 2025-04-29 23:36:37 +02:00
commit ce1095bb24
27 changed files with 621 additions and 0 deletions

View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>Zeit zuordnen</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<script src="{{ url_for('static', filename='js/zuordnen.js') }}"></script>
</head>
<body>
<h2>Zeit zuordnen</h2>
<form id="zuordnungForm">
{% for z in zeiten %}
<div class="zuordnung">
<span>{{ z.zeit }}</span>
<select name="fahrer">
<option value="">-- Fahrer wählen --</option>
{% for f in fahrer %}
<option value="{{ f.nummer }}">#{{ f.nummer }} - {{ f.name }}</option>
{% endfor %}
</select>
</div>
{% endfor %}
<button type="submit" class="green">Speichern</button>
</form>
</body>
</html>