django-admin-modernize

Modern template for Django admin interface


Keywords
django-bootstrap5, django-template, modernize
License
MIT
Install
pip install django-admin-modernize==1.0.3

Documentation

Django Modernize

Open-source Django project crafted on top of Modernize, an open-source Bootstrap 5 design from AdminMart. The product is designed to deliver the best possible user experience with highly customizable feature-rich pages. Material Material has easy and intuitive responsive design whether it is viewed on retina screens or laptops.


Features:

  • ✅ Up-to-date Dependencies
  • ✅ Theme: Django Admin Modernize, designed by AdminMart
    • can be used in any Django project (new or legacy)
  • ✅ Authentication: Django.contrib.AUTH, Registration
  • 🚀 Deployment
    • CI/CD flow via Render

Modernize - Bootstrap 5 design


Manual Build

👉 Download the code

$ git clone https://github.com/app-generator/django-modernize.git
$ cd django-modernize

👉 Install modules via VENV

$ virtualenv env
$ source env/bin/activate
$ pip install -r requirements.txt

👉 Set Up Database

$ python manage.py makemigrations
$ python manage.py migrate

👉 Create the Superuser

$ python manage.py createsuperuser

👉 Start the app

$ python manage.py runserver

At this point, the app runs at http://127.0.0.1:8000/.


Codebase structure

The project is coded using a simple and intuitive structure presented below:

< PROJECT ROOT >
   |
   |-- core/                            
   |    |-- settings.py                  # Project Configuration  
   |    |-- urls.py                      # Project Routing
   |
   |-- home/
   |    |-- views.py                     # APP Views 
   |    |-- urls.py                      # APP Routing
   |    |-- models.py                    # APP Models 
   |    |-- tests.py                     # Tests  
   |    |-- templates/                   # Theme Customisation 
   |         |-- includes                # 
   |              |-- custom-footer.py   # Custom Footer      
   |     
   |-- requirements.txt                  # Project Dependencies
   |
   |-- env.sample                        # ENV Configuration (default values)
   |-- manage.py                         # Start the app - Django default start script
   |
   |-- ************************************************************************

Deploy on Render

  • Create a Blueprint instance
  • Click New Blueprint Instance button.
  • Connect your repo which you want to deploy.
  • Fill the Service Group Name and click on Update Existing Resources button.
  • After that your deployment will start automatically.

At this point, the product should be LIVE.



Django Modernize - Minimal Django core provided by AppSeed