Open-source dashboard generated by the AppSeed platform with basic modules, database, authentication and deployment scripts on top of Datta Able (free version). For newcomers, Datta Able Bootstrap Lite is the most stylised Bootstrap 4 Lite Admin Template, around all other Lite/Free admin templates in the market. It comes with high feature-rich pages and components with fully developer-centric code. Before developing Datta Able our key points were performance and design.
Features
- UI-Ready app, SQLite Database, Django Native ORM
- Modular design, clean code-base
- Session-Based Authentication, Forms validation
- Deployment scripts: Docker, Gunicorn / Nginx
- Support via Github and Discord.
Links
- Datta Able Django - Product page
- Datta Able Django - LIVE deployment
- Datta Able Django - product documentaion
PRO versions include Premium UI Kits, Lifetime updates and 24/7 LIVE Support (via Discord)
| Django Datta PRO | Django Material PRO | Django Volt PRO |
|---|---|---|
![]() |
![]() |
![]() |
$ # Get the code
$ git clone https://github.com/yaozeliang/Library.git
$ cd django-datta-able
$
$ # Virtualenv modules installation (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Virtualenv modules installation (Windows based systems)
$ # virtualenv env
$ # .\env\Scripts\activate
$
$ # Install modules
$ # SQLIte version
$ pip3 install -r requirements.txt
$
$ # Create tables
$ python manage.py makemigrations
$ python manage.py migrate
$
$ # Start the application (development mode)
$ python manage.py runserver # default port 8000
$
$ # Start the app - custom port
$ # python manage.py runserver 0.0.0.0:<your_port>
$
$ # Access the web app in browser: http://127.0.0.1:8000/


