This commit is contained in:
Iliyan Angelov
2025-11-26 22:32:20 +02:00
commit ed94dd22dd
150 changed files with 14058 additions and 0 deletions

16
legal/urls.py Normal file
View File

@@ -0,0 +1,16 @@
"""
URL configuration for legal app.
"""
from django.urls import path
from . import views
app_name = 'legal'
urlpatterns = [
path('privacy/', views.PrivacyPolicyView.as_view(), name='privacy'),
path('terms/', views.TermsOfServiceView.as_view(), name='terms'),
path('data-request/', views.DataRequestView.as_view(), name='data_request'),
path('data-request/<int:pk>/', views.DataRequestDetailView.as_view(), name='data_request_detail'),
path('cookie-consent/', views.cookie_consent_view, name='cookie_consent'),
]