timetable base

This commit is contained in:
imperosol
2025-03-03 15:24:22 +01:00
parent 289ffe1109
commit d3444f6bea
14 changed files with 222 additions and 7 deletions

5
timetable/urls.py Normal file
View File

@@ -0,0 +1,5 @@
from django.urls import path
from timetable.views import GeneratorView
urlpatterns = [path("generator/", GeneratorView.as_view(), name="generator")]