| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {% load bootstrap5 %}
- <!DOCTYPE html>
- <html lang="de">
- <head>
- <meta charset="UTF-8">
- <title>Dienstplan</title>
- {% bootstrap_css %}
- </head>
- <body>
- <div class="container">
- <h2>Dienstplan für {{ monat }} - {{ jahr }}
- </h2>
- <h3>Mitarbeiter: {{ mitarbeiter.name }}
- </h3>
- {% if schichten %}
- <table class="table table-striped">
- <thead>
- <tr>
- <th scope="col" width="150">Tag</th>
- <th scope="col" width="50">Typ</th>
- <th scope="col" width="50">Beginn</th>
- <th scope="col" width="50">Ende</th>
- <th scope="col">Kommentar</th>
- </tr>
- </thead>
- <tbody>
- {% for schicht in schichten %}
- <tr>
- <td>{{ schicht.date }}</td>
- <td>{{ schicht.shifttype }}</td>
- <td>{{ schicht.start }}</td>
- <td>{{ schicht.end }}</td>
- <td>{{ schicht.info }}</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- {% else %}
- <p>Keine Schichten für diesen Zeitraum gefunden.</p>
- {% endif %}
- </div>
- {% bootstrap_javascript %}
- </body>
- </html>
|