Folder Structure

Use below velzon structure for modify and better understand the Velzon.

1. Velzon Django Folders
Folder Path Uses

apps

apps/ All apps files here.

components

components/ All components files here, you can add your custom components.

dashboards

dashboards/ All dashboards files here.

db.sqllite3

db.sqllite3 All Database related migrations.

layouts

layouts/ All layouts files here.

pages

pages/ All pages files here.

src

src/ All src files here.

Velzon

velzon/ velzon settings,views,urls,forms and other files here.

gulpfile.js

Admin/ gulp related code. if you don't have knowledge about this then don't modify it.

package.json

Admin/ package.json files here.
2. Velzon Django partials Files
File Path Uses

base.html

templates/partials/base All base structure files here.

footer.html

templates/partials/footer Footer related code. you can modify as per your requirements.

customizer.html

templates/partials/customizer Customizer related code.

sidebar.html

templates/partials/sidebar Sidebar menus related code, you can add new menu here.

topbar.html

templates/partials/topbar Topbar related code here, you can easily customize topbar from here.

css

templates/partials/base Common css placed here,extra css includes in html files.

javascripts

templates/partials/base Common javascript includes here, extra javascript includes in html files.
3. Velzon Layouts Files
File Path Uses

layouts-detached.html

layouts/ Detached layout file here.

layouts-horizontal.html

layouts/ Horizontal layout file here.

layouts-two-column.html

layouts/ Two column layout file here.

layouts-vertical-hovered.html

layouts/ Vertical hovered layout file here.
4. Velzon Django Auth Files
File Path Uses

base.html

templates/account/base Auth base files here.

login.html

templates/account/ Login view page code, if you need to customize login you can do from this.

signup.html

templates/account/ Registration page view code.

verification_sent.html

templates/account/ Email verification page.

email_confirm.html

templates/account/ email_confirm page.

password_reset.html

templates/account/password/reset Reset password using email.