|
@@ -3,7 +3,8 @@ from .views import (
|
|
ChartDataByMonth,
|
|
ChartDataByMonth,
|
|
AnalyticsData,
|
|
AnalyticsData,
|
|
monthly_report,
|
|
monthly_report,
|
|
- weekly_report
|
|
|
|
|
|
+ weekly_report,
|
|
|
|
+ weeklyreportlist
|
|
)
|
|
)
|
|
|
|
|
|
urlpatterns = [
|
|
urlpatterns = [
|
|
@@ -11,4 +12,5 @@ urlpatterns = [
|
|
path('analytic-data/', ChartDataByMonth.as_view()),
|
|
path('analytic-data/', ChartDataByMonth.as_view()),
|
|
path('monthly-report/<location_id>', monthly_report),
|
|
path('monthly-report/<location_id>', monthly_report),
|
|
path('weekly-report/<location_id>', weekly_report),
|
|
path('weekly-report/<location_id>', weekly_report),
|
|
|
|
+ path('weekly-reports', weeklyreportlist),
|
|
]
|
|
]
|