πŸ“‚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

File/FolderPathDescription

πŸ“‚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

All Database related migrations file.

manage.py

Django's command-line utility for administrative tasks.

utils.py

All meta data for each page is maintained here.

Light Able Django Templates

FilePathDescription

πŸ—„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