ma_month.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. </head>
  9. <body>
  10. <div class="container">
  11. <h2>Dienstplan für {{ monat }} - {{ jahr }}
  12. </h2>
  13. <h3>Mitarbeiter: {{ mitarbeiter.name }}
  14. </h3>
  15. {% if schichten %}
  16. <table class="table table-striped">
  17. <thead>
  18. <tr>
  19. <th scope="col" width="150">Tag</th>
  20. <th scope="col" width="50">Typ</th>
  21. <th scope="col" width="50">Beginn</th>
  22. <th scope="col" width="50">Ende</th>
  23. <th scope="col">Kommentar</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. {% for schicht in schichten %}
  28. <tr>
  29. <td>{{ schicht.date }}</td>
  30. <td>{{ schicht.shifttype }}</td>
  31. <td>{{ schicht.start }}</td>
  32. <td>{{ schicht.end }}</td>
  33. <td>{{ schicht.info }}</td>
  34. </tr>
  35. {% endfor %}
  36. </tbody>
  37. </table>
  38. {% else %}
  39. <p>Keine Schichten für diesen Zeitraum gefunden.</p>
  40. {% endif %}
  41. </div>
  42. {% bootstrap_javascript %}
  43. </body>
  44. </html>