register function in app_name (dept_emp) / admin.py file.
Read moreHow do I see installed apps in Django?
The list of installed applications is defined in settings. INSTALLED_APPS . It contains a tuple of strings, so you can iterate on it to access each application’s name.
Read moreHow do I add an app to Django?
To add a new Django application to an existing project
Read moreHow use Django Admin app?
As this tutorial is largely dealing with the Django Admin Interface, you may be able to follow along even if you have a somewhat different setup.
Read moreHow do you add a user model to the Django admin?
Run the following command:
Read more