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

7
base/admin.py Normal file
View File

@@ -0,0 +1,7 @@
from django.contrib import admin
from .models import Patient, Detection
# Register your models here.
admin.site.register(Patient)
admin.site.register(Detection)