Initial deploy setup
deploy / deploy (push) Canceled after 0s

This commit is contained in:
Jens
2026-07-21 14:00:00 +02:00
commit b8091e59bd
285 changed files with 27854 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
from django.urls import path
from .views import ProfileListView, ProfileUpdateView, activate_profile
urlpatterns = [
path("", ProfileListView.as_view(), name="list"),
path("<int:pk>/", ProfileUpdateView.as_view(), name="edit"),
path("<int:pk>/activate/", activate_profile, name="activate"),
]