Coverage for website/announcements/urls.py: 100.00%

4 statements  

« prev     ^ index     » next       coverage.py v7.6.7, created at 2025-08-14 10:31 +0000

1from announcements import views 

2from django.urls import include, path 

3 

4#: the name of this app 

5app_name = "announcements" 

6 

7#: the actual routes 

8urlpatterns = [ 

9 path( 

10 "announcements/", 

11 include( 

12 [ 

13 path( 

14 "close-announcement", 

15 views.close_announcement_view, 

16 name="close-announcement", 

17 ) 

18 ] 

19 ), 

20 ) 

21]