update
This commit is contained in:
16
legal/urls.py
Normal file
16
legal/urls.py
Normal 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'),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user