* [UPDT]candidate update stage * [FIX]typo in notification - email sent * [UPDT]recruitment updates * [UPDT]onboarding updates * [UPDT]attendance updates * [UPDT]employee updates * [UPDT]updated static files for summernote --------- Co-authored-by: NIKHIL RAVI <nikhil.ravi10@gmail.com>
14 lines
339 B
Python
14 lines
339 B
Python
"""
|
|
admin.py
|
|
|
|
This page is used to register the model with admins site.
|
|
"""
|
|
from django.contrib import admin
|
|
from employee.models import Employee, EmployeeWorkInformation, EmployeeBankDetails
|
|
|
|
# Register your models here.
|
|
|
|
admin.site.register(Employee)
|
|
admin.site.register(EmployeeBankDetails)
|
|
admin.site.register(EmployeeWorkInformation)
|