from django.urls import path
from . import views

urlpatterns = [
    path("", views.home, name="portal-home"),
    path("about/", views.about, name="portal-about"),
    path("dashboard/", views.dashboard, name="portal-dashboard"),
    path("reportlist/", views.reportlist, name="portal-reportlist"),
    path("claims/", views.claim_list, name="portal-claims"),
    path("login/", views.loginPage, name="portal-login"),
    path("logout/", views.logoutUser, name="portal-logout"),
    path("report/", views.report, name="portal-report"),
    path(
        "customer-report-list/",
        views.customerreportlist,
        name="portal-customer-report-list",
    ),
    path("adminreportlist/", views.adminreportlist, name="portal-adminreportlist"),
    path("admindashboard/", views.admindashboard, name="portal-admindashboard"),
    path("adminmainlist/", views.adminmainlist, name="portal-adminmainlist"),
    path(
        "adminquarterlyimpact/",
        views.adminquarterlyimpact,
        name="portal-adminquarterlyimpact",
    ),
    path(
        "admindirfactorlist/",
        views.admindirfactorlist,
        name="portal-admindirfactorlist",
    ),
    path(
        "adminmanuexclusion/",
        views.adminmanuexclusion,
        name="portal-adminmanuexclusion",
    ),
    path(
      "prescriptions/", 
      views.prescriptions, 
      name="portal-prescriptions"),
    path(
        "report-by-range/", 
        views.reportbyrange, 
        name="portal-reportbyrange"),
    path(
        "test/", 
        views.test, 
        name="portal-test"),

    path(
        "customer-main/", 
        views.customermain, 
        name="portal-customer-main"),
    path(
        "customer-claims/", 
        views.customerclaims, 
        name="portal-customer-claims"),
    path(
        "customer-performance/", 
        views.customerperformance, 
        name="portal-customer-performance"),
    path(
        "customer-accumulator/", 
        views.customeraccumulator, 
        name="portal-customer-accumulator"),
    path(
        "customer-replenishments/", 
        views.customerreplenishments, 
        name="portal-customer-replenishments"),
    path(
        "customer-invenstory/", 
        views.customerinvenstory, 
        name="portal-customer-invenstory"),
    path("rick/", views.rick, name="portal-rick"),
    path("dashboard-02/", views.dashboard_02, name="portal-dashboard-02"),
    path("dashboards/dashboard-02/", views.dashboard_02, name="portal-dashboard-02"),
    path("dashboards/dashboard-03/", views.dashboard_03, name="portal-dashboard-03"),
    path("dashboards/indiv/", views.indiv, name="portal-indiv"),
]
