Coverage for src/common/urls.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.9.2, created at 2025-08-04 12:59 +0300

1from django.urls import path 

2 

3from src.common.views import ( 

4 notify_users_they_have_uncompleted_orders, 

5 ShoppingBagReminderInfoView, 

6) 

7 

8urlpatterns = [ 

9 path( 

10 'admin-page/', 

11 notify_users_they_have_uncompleted_orders, 

12 name='admin-page', 

13 ), 

14 path( 

15 'admin-bag-info/', 

16 ShoppingBagReminderInfoView.as_view(), 

17 name='admin-bag-info', 

18 ), 

19]