init commit

This commit is contained in:
2025-11-08 19:52:13 +01:00
parent eb3ef908a0
commit 174af90eb4
332 changed files with 63397 additions and 0 deletions

15
base/urls.py Normal file
View File

@@ -0,0 +1,15 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
path('search/', views.search, name='patient_search'),
path('create/', views.patient_create, name='patient_create'),
path('delete/<int:id>/', views.patient_delete, name='patient_delete'),
path('update/<int:id>/', views.patient_update, name='patient_update'),
path('detect/<int:id>/', views.patient_detect, name='patient_detect'),
path('detect/', views.detect_list, name='detect_list'),
path('detect/<int:id>', views.detect_view, name='detect_view'),
path('detect/delete/<int:id>', views.detect_delete, name='detect_delete')
]