# How to customize & redesign the Django Admin panel?

***Note: If you are looking for a Full Stack Developer (Django+React), then connect with me on*** [***LinkedIn***](https://www.linkedin.com/in/mnamegaurav/) ***or contact me through my*** [***portfolio***](https://gaurav.devjunction.in/)***.***

# Introduction:

This is how our good old default **Django** **Admin Panel** looks like:

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1652601227035/iN-VApcM4.png align="left")

**Ewww**, not that great, could have been better **Django** darling. But no worries, we have got many **Open Source** 3rd party libraries which can turn our **Admin Panel** into something like this:

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1652601256646/Dlxhly1I5.png align="left")

# Steps:

* For this blog, we will be using `django-jazzmin` a third party **Open Source** library. Let’s **install** it first:
    

```python
pip install django-jazzmin
```

* It's time to **add** it in our Django’s **installed apps** list in `settings.py` file. Keep in mind that to let `django-jazzmin` override your **admin** **templates** correctly, we have to put it at the top of the **installed apps** list.
    

```python
INSTALLED_APPS = [
    'jazzmin',

    'django.contrib.admin',
    # ...
]
```

That's it, go and check out your **Django Admin panel** now, you will see a beautiful look with many customizations.

> ***For more such crispy blogs daily, follow Dev.Junction, subscribe to our newsletter and get notified.***

## Social Links

* **LinkedIn:** [https://www.linkedin.com/in/mnamegaurav/](https://www.linkedin.com/in/mnamegaurav/)
    
* **YouTube:** [https://www.youtube.com/c/devjunction](https://www.youtube.com/c/devjunction)
    
* **Website:** [https://gaurav.devjunction.in/](https://gaurav.devjunction.in/)
    
* **GitHub:** [https://github.com/mnamegaurav](https://github.com/mnamegaurav)
    
* **Instagram:** [https://www.instagram.com/mnamegaurav/](https://www.instagram.com/mnamegaurav/)
    
* **Twitter:** [https://twitter.com/mnamegaurav](https://twitter.com/mnamegaurav)
