Tag: Django Admin
Customize Django Admin Interface
Last updated on 16th November 2021 by [email protected] | Category: Django Tutorial
Django Admin Interface is a powerful and responsive GUI, which provides many features including CRUD for the ease of developers as well as users, as a developer you have used it many times but sometimes it needs customization right? So Django provides you the capability to even customize the Django admin interface isn’t it awesome […]
How to render a model to Django Admin
Last updated on 13th November 2021 by [email protected] | Category: Django Tutorial
In this blog, let’s see how to render a model in django admin.The admin is enabled in the default project template used by startproject. For example, let us consider project- admin_model to demonstrate this. We start the Django project by typing this in the terminal. Let’s go inside the newly created admin_model directory. Typing the following: […]