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