├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── changelog.md ├── docs ├── magic-dash-pro.md ├── magic-dash.md └── simple-tool.md ├── imgs ├── changelog │ ├── 0.3.1 │ │ ├── 全屏水印演示.png │ │ ├── 右键菜单刷新页面演示.gif │ │ ├── 页首全屏切换演示.png │ │ └── 页首页面重载演示.png │ └── 0.4.0 │ │ ├── url参数提取示例演示.png │ │ └── 系统管理-日志管理-登录日志演示.png ├── logo.svg ├── 公众号.png └── 知识星球.jpg ├── magic_dash.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── entry_points.txt ├── requires.txt └── top_level.txt ├── magic_dash ├── __init__.py └── templates │ ├── magic-dash-pro │ ├── app.py │ ├── assets │ │ ├── css │ │ │ ├── base.css │ │ │ ├── core.css │ │ │ └── login.css │ │ ├── favicon.ico │ │ ├── imgs │ │ │ ├── init_loading.gif │ │ │ ├── login │ │ │ │ ├── left-side-bg.svg │ │ │ │ ├── 插图1.svg │ │ │ │ ├── 插图2.svg │ │ │ │ ├── 插图3.svg │ │ │ │ └── 插图4.svg │ │ │ ├── logo.svg │ │ │ └── status │ │ │ │ ├── 403.svg │ │ │ │ ├── 404.svg │ │ │ │ └── 500.svg │ │ ├── js │ │ │ └── basic_callbacks.js │ │ └── videos │ │ │ └── login-bg.mp4 │ ├── callbacks │ │ ├── __init__.py │ │ ├── core_pages_c │ │ │ ├── __init__.py │ │ │ ├── login_logs_c.py │ │ │ └── page1_c.py │ │ └── login_c.py │ ├── components │ │ ├── __init__.py │ │ ├── core_side_menu.py │ │ ├── personal_info.py │ │ └── user_manage.py │ ├── configs │ │ ├── __init__.py │ │ ├── auth_config.py │ │ ├── base_config.py │ │ ├── database_config.py │ │ ├── layout_config.py │ │ └── router_config.py │ ├── models │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── init_db.py │ │ ├── logs.py │ │ └── users.py │ ├── requirements.txt │ ├── server.py │ ├── utils │ │ └── clear_pycache.py │ └── views │ │ ├── __init__.py │ │ ├── core_pages │ │ ├── __init__.py │ │ ├── independent_page.py │ │ ├── independent_page_demo.py │ │ ├── independent_wildcard_page.py │ │ ├── independent_wildcard_page_demo.py │ │ ├── index.py │ │ ├── login_logs.py │ │ ├── page1.py │ │ ├── sub_menu_page1.py │ │ ├── sub_menu_page2.py │ │ ├── sub_menu_page3.py │ │ └── url_params_page.py │ │ ├── login.py │ │ └── status_pages │ │ ├── _403.py │ │ ├── _404.py │ │ ├── _500.py │ │ └── __init__.py │ ├── magic-dash │ ├── app.py │ ├── assets │ │ ├── css │ │ │ ├── base.css │ │ │ └── core.css │ │ ├── favicon.ico │ │ ├── imgs │ │ │ ├── init_loading.gif │ │ │ ├── logo.svg │ │ │ └── status │ │ │ │ ├── 404.svg │ │ │ │ └── 500.svg │ │ └── js │ │ │ └── basic_callbacks.js │ ├── callbacks │ │ ├── __init__.py │ │ └── core_pages_c │ │ │ ├── __init__.py │ │ │ └── page1_c.py │ ├── components │ │ ├── __init__.py │ │ └── core_side_menu.py │ ├── configs │ │ ├── __init__.py │ │ ├── base_config.py │ │ ├── layout_config.py │ │ └── router_config.py │ ├── requirements.txt │ ├── server.py │ ├── utils │ │ └── clear_pycache.py │ └── views │ │ ├── __init__.py │ │ ├── core_pages │ │ ├── __init__.py │ │ ├── independent_page.py │ │ ├── independent_page_demo.py │ │ ├── independent_wildcard_page.py │ │ ├── independent_wildcard_page_demo.py │ │ ├── index.py │ │ ├── page1.py │ │ ├── sub_menu_page1.py │ │ ├── sub_menu_page2.py │ │ ├── sub_menu_page3.py │ │ └── url_params_page.py │ │ └── status_pages │ │ ├── _404.py │ │ ├── _500.py │ │ └── __init__.py │ └── simple-tool │ ├── app.py │ └── requirements.txt ├── pyproject.toml └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | dist/ 3 | **/*.db 4 | .vscode/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/magic-dash-pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/docs/magic-dash-pro.md -------------------------------------------------------------------------------- /docs/magic-dash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/docs/magic-dash.md -------------------------------------------------------------------------------- /docs/simple-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/docs/simple-tool.md -------------------------------------------------------------------------------- /imgs/changelog/0.3.1/全屏水印演示.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/imgs/changelog/0.3.1/全屏水印演示.png -------------------------------------------------------------------------------- /imgs/changelog/0.3.1/右键菜单刷新页面演示.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/imgs/changelog/0.3.1/右键菜单刷新页面演示.gif -------------------------------------------------------------------------------- /imgs/changelog/0.3.1/页首全屏切换演示.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/imgs/changelog/0.3.1/页首全屏切换演示.png -------------------------------------------------------------------------------- /imgs/changelog/0.3.1/页首页面重载演示.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/imgs/changelog/0.3.1/页首页面重载演示.png -------------------------------------------------------------------------------- /imgs/changelog/0.4.0/url参数提取示例演示.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/imgs/changelog/0.4.0/url参数提取示例演示.png -------------------------------------------------------------------------------- /imgs/changelog/0.4.0/系统管理-日志管理-登录日志演示.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/imgs/changelog/0.4.0/系统管理-日志管理-登录日志演示.png -------------------------------------------------------------------------------- /imgs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/imgs/logo.svg -------------------------------------------------------------------------------- /imgs/公众号.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/imgs/公众号.png -------------------------------------------------------------------------------- /imgs/知识星球.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/imgs/知识星球.jpg -------------------------------------------------------------------------------- /magic_dash.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash.egg-info/PKG-INFO -------------------------------------------------------------------------------- /magic_dash.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /magic_dash.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /magic_dash.egg-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash.egg-info/entry_points.txt -------------------------------------------------------------------------------- /magic_dash.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /magic_dash.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | magic_dash 2 | -------------------------------------------------------------------------------- /magic_dash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/__init__.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/app.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/css/base.css -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/css/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/css/core.css -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/css/login.css -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/favicon.ico -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/imgs/init_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/imgs/init_loading.gif -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/imgs/login/left-side-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/imgs/login/left-side-bg.svg -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/imgs/login/插图1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/imgs/login/插图1.svg -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/imgs/login/插图2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/imgs/login/插图2.svg -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/imgs/login/插图3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/imgs/login/插图3.svg -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/imgs/login/插图4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/imgs/login/插图4.svg -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/imgs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/imgs/logo.svg -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/imgs/status/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/imgs/status/403.svg -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/imgs/status/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/imgs/status/404.svg -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/imgs/status/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/imgs/status/500.svg -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/js/basic_callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/js/basic_callbacks.js -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/assets/videos/login-bg.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/assets/videos/login-bg.mp4 -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/callbacks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/callbacks/core_pages_c/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/callbacks/core_pages_c/__init__.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/callbacks/core_pages_c/login_logs_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/callbacks/core_pages_c/login_logs_c.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/callbacks/core_pages_c/page1_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/callbacks/core_pages_c/page1_c.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/callbacks/login_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/callbacks/login_c.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/components/core_side_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/components/core_side_menu.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/components/personal_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/components/personal_info.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/components/user_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/components/user_manage.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/configs/__init__.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/configs/auth_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/configs/auth_config.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/configs/base_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/configs/base_config.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/configs/database_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/configs/database_config.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/configs/layout_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/configs/layout_config.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/configs/router_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/configs/router_config.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/models/__init__.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/models/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/models/exceptions.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/models/init_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/models/init_db.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/models/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/models/logs.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/models/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/models/users.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/requirements.txt -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/server.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/utils/clear_pycache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/utils/clear_pycache.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/core_pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/core_pages/__init__.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/core_pages/independent_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/core_pages/independent_page.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/core_pages/independent_page_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/core_pages/independent_page_demo.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/core_pages/independent_wildcard_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/core_pages/independent_wildcard_page.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/core_pages/independent_wildcard_page_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/core_pages/independent_wildcard_page_demo.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/core_pages/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/core_pages/index.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/core_pages/login_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/core_pages/login_logs.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/core_pages/page1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/core_pages/page1.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/core_pages/sub_menu_page1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/core_pages/sub_menu_page1.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/core_pages/sub_menu_page2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/core_pages/sub_menu_page2.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/core_pages/sub_menu_page3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/core_pages/sub_menu_page3.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/core_pages/url_params_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/core_pages/url_params_page.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/login.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/status_pages/_403.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/status_pages/_403.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/status_pages/_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/status_pages/_404.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/status_pages/_500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash-pro/views/status_pages/_500.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash-pro/views/status_pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/app.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/assets/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/assets/css/base.css -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/assets/css/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/assets/css/core.css -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/assets/favicon.ico -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/assets/imgs/init_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/assets/imgs/init_loading.gif -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/assets/imgs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/assets/imgs/logo.svg -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/assets/imgs/status/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/assets/imgs/status/404.svg -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/assets/imgs/status/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/assets/imgs/status/500.svg -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/assets/js/basic_callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/assets/js/basic_callbacks.js -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/callbacks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/callbacks/core_pages_c/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/callbacks/core_pages_c/__init__.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/callbacks/core_pages_c/page1_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/callbacks/core_pages_c/page1_c.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/components/core_side_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/components/core_side_menu.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/configs/__init__.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/configs/base_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/configs/base_config.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/configs/layout_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/configs/layout_config.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/configs/router_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/configs/router_config.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/requirements.txt -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/server.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/utils/clear_pycache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/utils/clear_pycache.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/core_pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/views/core_pages/__init__.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/core_pages/independent_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/views/core_pages/independent_page.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/core_pages/independent_page_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/views/core_pages/independent_page_demo.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/core_pages/independent_wildcard_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/views/core_pages/independent_wildcard_page.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/core_pages/independent_wildcard_page_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/views/core_pages/independent_wildcard_page_demo.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/core_pages/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/views/core_pages/index.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/core_pages/page1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/views/core_pages/page1.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/core_pages/sub_menu_page1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/views/core_pages/sub_menu_page1.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/core_pages/sub_menu_page2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/views/core_pages/sub_menu_page2.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/core_pages/sub_menu_page3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/views/core_pages/sub_menu_page3.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/core_pages/url_params_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/views/core_pages/url_params_page.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/status_pages/_404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/views/status_pages/_404.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/status_pages/_500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/magic-dash/views/status_pages/_500.py -------------------------------------------------------------------------------- /magic_dash/templates/magic-dash/views/status_pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magic_dash/templates/simple-tool/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/simple-tool/app.py -------------------------------------------------------------------------------- /magic_dash/templates/simple-tool/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/magic_dash/templates/simple-tool/requirements.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HogaStack/magic-dash/HEAD/setup.py --------------------------------------------------------------------------------