Coverage for website/singlepages/urls.py: 100.00%
4 statements
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
1from django.urls import include, path
3from .views import (
4 BecomeActiveView,
5 ContactView,
6 EventTermsView,
7 PrivacyPolicyView,
8 ResponsibleDisclosureView,
9 SiblingAssociationsView,
10 StudentParticipantView,
11 StudentWellBeingView,
12 StyleGuideView,
13)
15app_name = "singlepages"
17urlpatterns = [
18 path(
19 "responsible-disclosure/",
20 ResponsibleDisclosureView.as_view(),
21 name="responsible-disclosure",
22 ),
23 path("privacy-policy/", PrivacyPolicyView.as_view(), name="privacy-policy"),
24 path(
25 "event-registration-terms/",
26 EventTermsView.as_view(),
27 name="event-registration-terms",
28 ),
29 path(
30 "association/",
31 include(
32 [
33 path(
34 "sibling-associations/",
35 SiblingAssociationsView.as_view(),
36 name="sibling-associations",
37 ),
38 ]
39 ),
40 ),
41 path(
42 "education/",
43 include(
44 [
45 path(
46 "student-well-being/",
47 StudentWellBeingView.as_view(),
48 name="student-well-being",
49 ),
50 path(
51 "student-participation/",
52 StudentParticipantView.as_view(),
53 name="student-participation",
54 ),
55 ]
56 ),
57 ),
58 path(
59 "members/",
60 include(
61 [
62 path(
63 "become-active/", BecomeActiveView.as_view(), name="become-active"
64 ),
65 path("styleguide/", StyleGuideView.as_view(), name="styleguide"),
66 ]
67 ),
68 ),
69 path("contact", ContactView.as_view(), name="contact"),
70]