π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
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 | 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
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