| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {% load bootstrap5 %}
- <!DOCTYPE html>
- <html lang="de">
- <head>
- <meta charset="UTF-8">
- <title>Dienstplan</title>
- {% bootstrap_css %}
- <style>
- .alnright { text-align: right; }
- </style>
- </head>
- <body>
- <div class="container">
- <table width=100%>
- <tr>
- <td width=30%><h2>Dienstplan für {{ monat }} - {{ jahr }}</h2></td>
- <td width=30%></td>
- <td width=30%><img src="https://brose-arena.de/wp-content/plugins/custom-functionality/assets/images/logo-brose-arena.svg" width="300" height="36.1" /></td>
- </tr>
- <tr>
- <td><h3>Mitarbeiter: {{ mitarbeiter.name }}</h3></td>
- <td></td>
- <td></td>
- </tr>
- </table>
- {% 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>
|