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