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/)

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

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.

Last updated