๐Ÿ“‚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/Folder
Path
Description

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

File
Path
Description

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