from django.urls import path from .views import LocationListView from .views import ( LocationAnalytics, ReviewListLocationWise, ReviewAnalyticsGraph, StaffLeaderBoard, SyncStaffLeaderBoard, StaffDelete, AllLocationSummary, ) urlpatterns = [ path('', LocationListView.as_view(), name='location-list'), path('analytics/', LocationAnalytics.as_view(), name='location-analytics-man'), path('reviews//', ReviewListLocationWise.as_view(), name='location-wise-review-list-man'), path('graph/', ReviewAnalyticsGraph.as_view(), name='location-analytics-graph-man'), path('graphs/all_location', AllLocationSummary.as_view(), name='all-location-graph-man'), path('staff/', StaffLeaderBoard.as_view(), name='staff-leaderboard-man'), path('staff/delete/', StaffDelete.as_view(), name='staff-delete-man'), path('sync-staff-list/', SyncStaffLeaderBoard.as_view(), name='sync-staff-list-man'), ]