Folder Structure

Ablepro Flask
└─Admin
  β”œβ”€β”€ πŸ“src
  |    └── πŸ“assets
  |        β”œβ”€β”€ πŸ“css
  |        β”œβ”€β”€ πŸ“fonts
  |        β”œβ”€β”€ πŸ“images
  |        β”œβ”€β”€ πŸ“js
  |        β”œβ”€β”€ πŸ“json
  |        └── πŸ“scss
  β”œβ”€β”€ πŸ“templates
  |      β”œβ”€β”€ πŸ“„index.html
  |      β”œβ”€β”€ πŸ“„readme.html
  |      β”œβ”€β”€ πŸ“admins
  |      β”œβ”€β”€ πŸ“application
  |      β”œβ”€β”€ πŸ“chart
  |      β”œβ”€β”€ πŸ“dashboard
  |      β”œβ”€β”€ πŸ“demo
  |      β”œβ”€β”€ πŸ“elements
  |      β”œβ”€β”€ πŸ“forms
  |      β”œβ”€β”€ πŸ“layouts
  |      β”œβ”€β”€ πŸ“other
  |      β”œβ”€β”€ πŸ“pages
  |      β”œβ”€β”€ πŸ“table
  |      └── πŸ“widget
  β”œβ”€β”€ πŸ“„.prettierignore
  β”œβ”€β”€ πŸ“„ app.py
  β”œβ”€β”€ πŸ“„db.sqlite3
  β”œβ”€β”€ πŸ“„package-libs-config.json
  β”œβ”€β”€ πŸ“„package-lock.json
  β”œβ”€β”€ πŸ“„package.json
  β”œβ”€β”€ πŸ“„yarn.lock
  β”œβ”€β”€ πŸ“„requirements.txt
  └── πŸ“„vite.config.js
└─Starterkit
  └─ It's easy start with minimal structure of Admin project.
└─Doc
  └─index.html

Light Able Flask Folders Structure (Root : /Admin)

File/Folder
Path
Description

πŸ“ src/assets

src/assets/

All source file are here.

db.sqlite3

db.sqlite3

All Database related migrations file.

app.py

app.py

Main file for our flask project.

Light Able Flask 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