Coverage for pages/urls.py: 100.00%

3 statements  

« prev     ^ index     » next       coverage.py v7.8.2, created at 2025-06-08 13:12 -0700

1from django.urls import path 

2 

3from .views import ( 

4 AboutPageView, 

5 ContactView, 

6 HomePageView, 

7 ProfilePageView, 

8 SuccessView, 

9) 

10 

11urlpatterns = [ 

12 path("", HomePageView.as_view(), name="home"), 

13 path("about/", AboutPageView.as_view(), name="about"), 

14 path("contact/", ContactView, name="contact"), 

15 path("success/", SuccessView, name="success"), 

16 path("profile/", ProfilePageView.as_view(), name="profile"), 

17]