main #1

Merged
xAndy merged 12 commits from main into live 2025-05-15 23:25:56 +02:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit fd86c2fcc0 - Show all commits

View File

@ -1,5 +1,6 @@
from django.test import TestCase
from datetime import timedelta from datetime import timedelta
from django.test import TestCase
from django.utils import timezone from django.utils import timezone
from .models import Helper, Room, Shift, ShiftRegistration from .models import Helper, Room, Shift, ShiftRegistration

View File

@ -14,9 +14,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
""" """
from django.conf import settings
from django.contrib import admin from django.contrib import admin
from django.urls import include, path from django.urls import include, path
from django.conf import settings
urlpatterns = [ urlpatterns = [
path("", include("shiftregister.metrics.urls")), path("", include("shiftregister.metrics.urls")),