pos_urls.py 246 Bytes
from django.urls import path
from pos import views

urlpatterns = [
    path(r'nsc/invoice', views.NSCInvoiceView.as_view()),
    path(r'de-mortgage', views.DeMortgageView.as_view()),
    path(r'de-mortgage1', views.DeMortgageView1.as_view()),
]