ma_month.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {% load bootstrap5 %}
  2. <!DOCTYPE html>
  3. <html lang="de">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Dienstplan</title>
  7. {% bootstrap_css %}
  8. <style>
  9. .alnright { text-align: right; }
  10. </style>
  11. </head>
  12. <body>
  13. <div class="container">
  14. <table width=100%>
  15. <tr>
  16. <td width=30%><h2>Dienstplan für {{ monat }} - {{ jahr }}</h2></td>
  17. <td width=30%></td>
  18. <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>
  19. </tr>
  20. <tr>
  21. <td><h3>Mitarbeiter: {{ mitarbeiter.name }}</h3></td>
  22. <td></td>
  23. <td></td>
  24. </tr>
  25. </table>
  26. {% if schichten %}
  27. <table class="table table-striped">
  28. <thead>
  29. <tr>
  30. <th scope="col" width="150">Tag</th>
  31. <th scope="col" width="50">Typ</th>
  32. <th scope="col" width="50">Beginn</th>
  33. <th scope="col" width="50">Ende</th>
  34. <th scope="col">Kommentar</th>
  35. </tr>
  36. </thead>
  37. <tbody>
  38. {% for schicht in schichten %}
  39. <tr>
  40. <td>{{ schicht.date }}</td>
  41. <td>{{ schicht.shifttype }}</td>
  42. <td>{{ schicht.start }}</td>
  43. <td>{{ schicht.end }}</td>
  44. <td>{{ schicht.info }}</td>
  45. </tr>
  46. {% endfor %}
  47. </tbody>
  48. </table>
  49. {% else %}
  50. <p>Keine Schichten für diesen Zeitraum gefunden.</p>
  51. {% endif %}
  52. </div>
  53. {% bootstrap_javascript %}
  54. </body>
  55. </html>