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

πŸ“‚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

FilePathDescription

πŸ—„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