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 moreWhat is Django admin in Django?
django-admin is Django’s command-line utility for administrative tasks . This document outlines all it can do. In addition, manage.py is automatically created in each Django project.
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 moreCan we change Django admin theme?
To do so, you will have to change the project’s settings.py . Find the TEMPLATES section and modify accordingly . To override the default template you first need to access the template you want to modify from the django/contrib/admin/templates/admin directory. Let’s say we want to change base.
Read more