Upload files to "biometric"

Signed-off-by: nestict <developer@nestict.com>
This commit is contained in:
2026-01-16 15:08:17 +01:00
parent c5f25858ba
commit 1e6b53be4d
15 changed files with 5246 additions and 0 deletions

16
biometric/admin.py Normal file
View File

@@ -0,0 +1,16 @@
"""
Register models with the Django admin site.
This section of code registers the BiometricDevices and BiometricEmployees models
with the Django admin site, allowing them to be managed via the admin interface.
"""
from django.contrib import admin
from .models import BiometricDevices, BiometricEmployees, COSECAttendanceArguments
# Register your models here.
admin.site.register(BiometricDevices)
admin.site.register(BiometricEmployees)
admin.site.register(COSECAttendanceArguments)