Upload files to "biometric"
Signed-off-by: nestict <developer@nestict.com>
This commit is contained in:
16
biometric/admin.py
Normal file
16
biometric/admin.py
Normal 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)
|
||||
Reference in New Issue
Block a user