# 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

{% tabs %}
{% tab title="Django" %}

```
├── 📁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
```

{% endtab %}
{% endtabs %}

### Light Able Django Folders Structure

<table><thead><tr><th width="203">File/Folder</th><th width="171">Path</th><th>Description</th></tr></thead><tbody><tr><td>📂light_able_django</td><td>light_able_django/</td><td>The main folder of our project.</td></tr><tr><td>📁applications</td><td>applications/</td><td>A Django app for all applications routes and views.</td></tr><tr><td>📁 src/assets</td><td>src/assets/</td><td>All source file are here.</td></tr><tr><td>📁 chart</td><td>chart/</td><td>A Django app for all chart routes and views.</td></tr><tr><td>📁dashboard</td><td>dashboard/</td><td>A Django app for admin dashboard.</td></tr><tr><td>📁 demo</td><td>demo/</td><td>A Django app for all demos routes and views.</td></tr><tr><td>📁 elements</td><td>elements/</td><td>A Django app for all the element routes and views.</td></tr><tr><td>📁 forms</td><td>forms/</td><td>A Django app for all the forms routes and views.</td></tr><tr><td>📁light_able_django</td><td>light_able_django/</td><td>This is  main app for all the settings, views, urls and other files here.</td></tr><tr><td>📁 other</td><td>other/</td><td>A Django app for all the other routes and views.</td></tr><tr><td>📁 pages</td><td>pages/</td><td>A Django app for all the authentication related routes and views.</td></tr><tr><td>📁 tables</td><td>tables/</td><td>A Django app for all the tables routes and views.</td></tr><tr><td>📁 templates</td><td>templates/</td><td>All the html files and partials are here.</td></tr><tr><td>📁 ui-kit</td><td>ui-kit/</td><td>A Django app for all the UI components routes and views.</td></tr><tr><td>📁 widget</td><td>widget/</td><td>A Django app for all the widget routes and views.</td></tr><tr><td><img src="broken-reference" alt="">db.sqlite3</td><td>db.sqlite3</td><td>All Database related migrations file.</td></tr><tr><td><img src="broken-reference" alt="">manage.py</td><td>manage.py</td><td>Django's command-line utility for administrative tasks.</td></tr><tr><td><img src="broken-reference" alt="">utils.py</td><td>utils.py</td><td>All meta data for each page is maintained here.</td></tr></tbody></table>

### Light Able Django Templates

<table><thead><tr><th width="156">File</th><th width="199">Path</th><th>Description</th></tr></thead><tbody><tr><td>🗄index.html</td><td>templates/index.html</td><td>Light Able Preview Page.</td></tr><tr><td>📁 application</td><td>templates/application</td><td>All application pages are here. Like Account Profile, Chat, eCommerce, Social Media etc.</td></tr><tr><td>📁 chart</td><td>templates/chart</td><td>All chart pages are here.</td></tr><tr><td>📁 dashboard</td><td>templates/chart</td><td>Dashboard page is here.</td></tr><tr><td>📁 demo</td><td>templates/chart</td><td>All the Demo pages here.</td></tr><tr><td>📁 elements</td><td>templates/elements</td><td>All the alerts, buttons, dropdowns, modals etc. elements files are here.</td></tr><tr><td>📁 forms</td><td>templates/forms</td><td>All the forms those are used in our kit are here.</td></tr><tr><td>📁 layouts</td><td>templates/layouts</td><td>All the layout pages like headers, sidebars, customizer and components are here. </td></tr><tr><td>📁 other</td><td>templates/other</td><td>You can all other pages here.</td></tr><tr><td>📁 pages</td><td>templates/pages</td><td>You can all authentication related pages here.</td></tr><tr><td>📁 table</td><td>templates/table</td><td>All tables used in kit are here.</td></tr><tr><td>📁 ui_kit</td><td>templates/ui_kit</td><td>All UI related pages are here.</td></tr><tr><td>📁 widget</td><td>templates/widget</td><td>All UI widget pages are here.</td></tr></tbody></table>
