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

25 lines
801 B
HTML

<!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>