๐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