# 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.                                                            |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://phoenixcoded.gitbook.io/able-pro/django/folder-structure.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
