| 1234567891011121314151617181920 |
- {% load static %}
- <!DOCTYPE html>
- <html lang="en" data-bs-theme="dark" style="font-size:1.2em">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="refresh" content="120">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>{% block title %}Shift Manager{% endblock title %}</title>
- <link rel="stylesheet" href="{% static 'roster/css/styles.css' %}">
- <link rel="icon"href="{% static 'favicon.png' %}">
- {% load bootstrap5 %}
- {% bootstrap_css %}
- {% bootstrap_javascript %}
- </head>
- <body >
- {% block content %}
- <!-- Content goes here -->
- {% endblock %}
- </body>
- </html>
|