from django.urls import path from . import views urlpatterns = [ path('invoices/', views.customer_invoices, name='customerinvoices'), path('products/', views.customer_products, name='customerproducts'), path('pricing/', views.pricing, name='pricing'), path('initiate_checkout/', views.initiate_checkout, name='initiatecheckout'), path('webhook/', views.webhook_handler, name='webhook_handler'), ]