# Folder Structure

```
Ablepro Django
└─Admin
  ├── 📁applications
  ├── 📁src
  |    └── 📁assets
  |        ├── 📁css
  |        ├── 📁fonts
  |        ├── 📁images
  |        ├── 📁js
  |        ├── 📁json
  |        └── 📁scss
  ├── 📁ablepro
  |       ├── 📁__pycache__
  |       ├── 📄__init_.py
  |       ├── 📄asgi.py
  |       ├── 📄forms.py
  |       ├── 📄settings.py
  |       ├── 📄urls.py
  |       ├── 📄views.py
  |       └── 📄wsgi.py
  ├── 📁templates
  |      ├── 📄index.html
  |      ├── 📄readme.html
  |      ├── 📁admins
  |      ├── 📁application
  |      ├── 📁chart
  |      ├── 📁dashboard
  |      ├── 📁demo
  |      ├── 📁elements
  |      ├── 📁forms
  |      ├── 📁layouts
  |      ├── 📁other
  |      ├── 📁pages
  |      ├── 📁table
  |      └── 📁widget
  ├── 📄.gitignore
  ├── 📄.prettierignore
  ├── 📄db.sqlite3
  ├── 📄manage.py
  ├── 📄db.sqlite3
  ├── 📄package-libs-config.json
  ├── 📄package-lock.json
  ├── 📄package.json
  ├── 📄yarn.lock
  ├── 📄requirements.txt
  └── 📄README.md
└─Starterkit
  └─ It's easy start with minimal structure of Admin project.
└─Doc
  └─index.html
```

#### Light Able Django Folders Structure (Root: Admin/) <a href="#light-able-django-folders-structure" id="light-able-django-folders-structure"></a>

| File/Folder   | Path        | Description                                             |
| ------------- | ----------- | ------------------------------------------------------- |
| 📂ablepro     | ablepro     | The main app of our project.                            |
| 📁 src/assets | src/assets/ | All source file are here.                               |
| 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 <a href="#light-able-django-templates" id="light-able-django-templates"></a>

| File           | Path                  | Description                                                                              |
| -------------- | --------------------- | ---------------------------------------------------------------------------------------- |
| 🗄index.html   | templates/index.html  | Light Able Preview Page.                                                                 |
| 📁admins       | templates/admins      | All application pages are here.                                                          |
| 📁 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.                                                         |
| 📁 widget      | templates/widget      | All UI widget pages are here.                                                            |
