Untitled

 avatar
unknown
plain_text
3 years ago
577 B
3
Indexable
from django.urls import path
from . import views

app_name = 'insurance'

urlpatterns = [
	path('ajax/update-quotation/', views.updateQuotation, name='updateQuotation'),
	path('ajax/change-quotation-status/', views.changeQuotationStatus, name='changeQuotationStatus'),
	path('change-password/', views.changePassword, name='changePassword'),
	path('profile/', views.profile, name='profile'),
	path('edit-profile/', views.editProfile, name='editProfile'),
	path('forget-password/', views.forgetPassword, name='forgetPassword'),
	path('enquiry/', views.enquiry, name='enquiry'),
]
Editor is loading...