usermanagement/translation/calendar

This commit is contained in:
jschaufuss@leitwerk.de
2025-08-11 12:27:30 +02:00
parent 13a5286357
commit c2bb64d961
27 changed files with 998 additions and 240 deletions

View File

@@ -1,9 +1,10 @@
from django.urls import path
from .views import SettingsView, test_connection, first_run
from .views import SettingsView, test_connection, first_run, subscriptions_overview
app_name = "settingspanel"
urlpatterns = [
path("", SettingsView.as_view(), name="index"),
path("test-connection/", test_connection, name="test_connection"),
path("setup/", first_run, name="setup"),
path("subscriptions/", subscriptions_overview, name="subscriptions"),
]