📂Folder Structure
The Django folder structure is meticulously organized to enhance project scalability and maintainability. With directories for apps, static files, templates, and configuration settings, it streamlines
├── 📁applications
├── 📁src
| └── 📁assets
| ├── 📁scss
| ├── 📁fonts
| ├── 📁images
| ├── 📁js
| └── 📁json
├── 📁chart
├── 📁dashboard
├── 📁demo
├── 📁elements
├── 📁forms
├── 📁light_able_django
| ├── 📁__pycache__
| ├── 📄__init.py
| ├── 📄asgi.py
| ├── 📄settings.py
| ├── 📄urls.py
| ├── 📄views.py
| └── 📄wsgi.py
├── 📁other
├── 📁pages
├── 📁tables
├── 📁templates
| ├── 📄index.html
| ├── 📁application
| ├── 📁chart
| ├── 📁dashboard
| ├── 📁demo
| ├── 📁elements
| ├── 📁forms
| ├── 📁layouts
| ├── 📁other
| ├── 📁pages
| ├── 📁table
| ├── 📁ui-kit
| └── 📁widget
├── 📁ui_kit
├── 📁widget
├── 📄db.sqlite3
├── 📄manage.py
├── 📄db.sqlite3
├── 📄utils.py
├── 📄gulpfile.js
├── 📄package-lock.json
├── 📄package.json
├── 📄yarn.lock
└── 📄README.md
Light Able Django Folders Structure
📂light_able_django
light_able_django/
The main folder of our project.
📁applications
applications/
A Django app for all applications routes and views.
📁 src/assets
src/assets/
All source file are here.
📁 chart
chart/
A Django app for all chart routes and views.
📁dashboard
dashboard/
A Django app for admin dashboard.
📁 demo
demo/
A Django app for all demos routes and views.
📁 elements
elements/
A Django app for all the element routes and views.
📁 forms
forms/
A Django app for all the forms routes and views.
📁light_able_django
light_able_django/
This is main app for all the settings, views, urls and other files here.
📁 other
other/
A Django app for all the other routes and views.
📁 pages
pages/
A Django app for all the authentication related routes and views.
📁 tables
tables/
A Django app for all the tables routes and views.
📁 templates
templates/
All the html files and partials are here.
📁 ui-kit
ui-kit/
A Django app for all the UI components routes and views.
📁 widget
widget/
A Django app for all the widget routes and views.
db.sqlite3
db.sqlite3
All Database related migrations file.
manage.py
manage.py
Django's command-line utility for administrative tasks.
utils.py
utils.py
All meta data for each page is maintained here.
Light Able Django Templates
🗄index.html
templates/index.html
Light Able Preview Page.
📁 application
templates/application
All application pages are here. Like Account Profile, Chat, eCommerce, Social Media etc.
📁 chart
templates/chart
All chart pages are here.
📁 dashboard
templates/chart
Dashboard page is here.
📁 demo
templates/chart
All the Demo pages here.
📁 elements
templates/elements
All the alerts, buttons, dropdowns, modals etc. elements files are here.
📁 forms
templates/forms
All the forms those are used in our kit are here.
📁 layouts
templates/layouts
All the layout pages like headers, sidebars, customizer and components are here.
📁 other
templates/other
You can all other pages here.
📁 pages
templates/pages
You can all authentication related pages here.
📁 table
templates/table
All tables used in kit are here.
📁 ui_kit
templates/ui_kit
All UI related pages are here.
📁 widget
templates/widget
All UI widget pages are here.
Last updated