from django.urls import path from billing.edit import views urlpatterns = [ path('paymentmethod//', views.edit_payment_method, name='editpaymentmethod'), path('payment/', views.edit_payment_modal, name='edit_payment_modal'), path('order//status/', views.update_order_status, name='update_order_status'), ]