from django.urls import path from . import views urlpatterns = [ path('',views.ChooseLoginView.as_view()), path('patientlogin/',views.PatientLoginView.as_view()), path('doctorlogin/',views.DoctorLoginView.as_view()), path('patientregister/',views.PatientRegisterView.as_view()), path('patientcenter/',views.PatientCenterView.as_view()), path('choosedepartment/',views.ChooseDepartmentView.as_view()), path('choosedoctorandtime//',views.ChooseDoctorAndTimeView.as_view()), path('confirmregistration////',views.ConfirmRegistrationView.as_view()), path('confirmregistration/',views.ConfirmRegistrationView.as_view()), path('patientshowregistration/',views.PatientShowRegistrationView.as_view()), path('doctorcenter/',views.DoctorCenterView.as_view()), path('doctorshowregistration/', views.DoctorShowRegistrationView.as_view()) ]