├── ._.DS_Store ├── ._go1_webshop.png ├── README.md ├── go1_webshop.png ├── go1_webshop ├── ._.DS_Store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ └── hooks.cpython-311.pyc ├── config │ └── __init__.py ├── fixtures │ └── custom_field.json ├── go1_webshop │ ├── ._.DS_Store │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── after_install.cpython-311.pyc │ │ ├── api.cpython-311.pyc │ │ └── query.cpython-311.pyc │ ├── after_install.py │ ├── api.py │ ├── custom │ │ ├── builder_client_script.json │ │ ├── builder_component.json │ │ ├── builder_page.json │ │ ├── builder_settings.json │ │ ├── file.json │ │ ├── item.json │ │ ├── item_barcode.json │ │ ├── item_group.json │ │ ├── item_price.json │ │ ├── mobile_menu.json │ │ ├── website_item.json │ │ ├── website_slideshow.json │ │ └── website_slideshow_item.json │ ├── default_pages │ │ ├── builder_client_scripts.json │ │ ├── builder_components.json │ │ └── builder_pages.json │ ├── doctype │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-311.pyc │ │ ├── erp_settings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── erp_settings.cpython-311.pyc │ │ │ ├── erp_settings.js │ │ │ ├── erp_settings.json │ │ │ ├── erp_settings.py │ │ │ └── test_erp_settings.py │ │ ├── go1_webshop_settings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── go1_webshop_settings.cpython-311.pyc │ │ │ ├── go1_webshop_settings.js │ │ │ ├── go1_webshop_settings.json │ │ │ ├── go1_webshop_settings.py │ │ │ └── test_go1_webshop_settings.py │ │ ├── go1_webshop_theme │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── go1_webshop_theme.cpython-311.pyc │ │ │ ├── go1_webshop_theme.js │ │ │ ├── go1_webshop_theme.json │ │ │ ├── go1_webshop_theme.py │ │ │ └── test_go1_webshop_theme.py │ │ ├── go1_webshop_theme_settings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── go1_webshop_theme_settings.cpython-311.pyc │ │ │ ├── go1_webshop_theme_settings.js │ │ │ ├── go1_webshop_theme_settings.json │ │ │ ├── go1_webshop_theme_settings.py │ │ │ └── test_go1_webshop_theme_settings.py │ │ ├── mobile_menu │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── mobile_menu.cpython-311.pyc │ │ │ ├── mobile_menu.js │ │ │ ├── mobile_menu.json │ │ │ ├── mobile_menu.py │ │ │ └── test_mobile_menu.py │ │ ├── override_doctype │ │ │ ├── __pycache__ │ │ │ │ └── builder_page.cpython-311.pyc │ │ │ └── builder_page.py │ │ └── theme_category_details │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── category_details.cpython-311.pyc │ │ │ └── theme_category_details.cpython-311.pyc │ │ │ ├── theme_category_details.json │ │ │ └── theme_category_details.py │ ├── favicon.ico │ ├── go1_webshop_files.zip │ ├── jquery.min.js │ ├── query.py │ ├── themes │ │ ├── fashion_theme │ │ │ └── theme.css │ │ └── furniture_theme │ │ │ └── theme.css │ └── workspace │ │ └── go1_webshop │ │ └── go1_webshop.json ├── hooks.py ├── modules.txt ├── patches.txt ├── public │ ├── .gitkeep │ ├── images │ │ └── User Profile.png │ └── root.css ├── templates │ ├── __init__.py │ ├── js │ │ └── custom_html_block.json │ └── pages │ │ └── __init__.py └── www │ └── __init__.py ├── license.txt └── pyproject.toml /._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/._.DS_Store -------------------------------------------------------------------------------- /._go1_webshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/._go1_webshop.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/README.md -------------------------------------------------------------------------------- /go1_webshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop.png -------------------------------------------------------------------------------- /go1_webshop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/._.DS_Store -------------------------------------------------------------------------------- /go1_webshop/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.1" 2 | -------------------------------------------------------------------------------- /go1_webshop/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/__pycache__/hooks.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/__pycache__/hooks.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go1_webshop/fixtures/custom_field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/fixtures/custom_field.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/._.DS_Store -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/__pycache__/after_install.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/__pycache__/after_install.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/__pycache__/api.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/__pycache__/api.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/__pycache__/query.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/__pycache__/query.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/after_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/after_install.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/api.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/custom/builder_client_script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/custom/builder_client_script.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/custom/builder_component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/custom/builder_component.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/custom/builder_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/custom/builder_page.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/custom/builder_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/custom/builder_settings.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/custom/file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/custom/file.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/custom/item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/custom/item.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/custom/item_barcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/custom/item_barcode.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/custom/item_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/custom/item_group.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/custom/item_price.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/custom/item_price.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/custom/mobile_menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/custom/mobile_menu.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/custom/website_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/custom/website_item.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/custom/website_slideshow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/custom/website_slideshow.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/custom/website_slideshow_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/custom/website_slideshow_item.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/default_pages/builder_client_scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/default_pages/builder_client_scripts.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/default_pages/builder_components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/default_pages/builder_components.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/default_pages/builder_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/default_pages/builder_pages.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/erp_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/erp_settings/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/erp_settings/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/erp_settings/__pycache__/erp_settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/erp_settings/__pycache__/erp_settings.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/erp_settings/erp_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/erp_settings/erp_settings.js -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/erp_settings/erp_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/erp_settings/erp_settings.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/erp_settings/erp_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/erp_settings/erp_settings.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/erp_settings/test_erp_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/erp_settings/test_erp_settings.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_settings/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_settings/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_settings/__pycache__/go1_webshop_settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_settings/__pycache__/go1_webshop_settings.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_settings/go1_webshop_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_settings/go1_webshop_settings.js -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_settings/go1_webshop_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_settings/go1_webshop_settings.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_settings/go1_webshop_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_settings/go1_webshop_settings.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_settings/test_go1_webshop_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_settings/test_go1_webshop_settings.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_theme/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme/__pycache__/go1_webshop_theme.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_theme/__pycache__/go1_webshop_theme.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme/go1_webshop_theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_theme/go1_webshop_theme.js -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme/go1_webshop_theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_theme/go1_webshop_theme.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme/go1_webshop_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_theme/go1_webshop_theme.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme/test_go1_webshop_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_theme/test_go1_webshop_theme.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme_settings/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_theme_settings/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme_settings/__pycache__/go1_webshop_theme_settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_theme_settings/__pycache__/go1_webshop_theme_settings.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme_settings/go1_webshop_theme_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_theme_settings/go1_webshop_theme_settings.js -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme_settings/go1_webshop_theme_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_theme_settings/go1_webshop_theme_settings.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme_settings/go1_webshop_theme_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_theme_settings/go1_webshop_theme_settings.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/go1_webshop_theme_settings/test_go1_webshop_theme_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/go1_webshop_theme_settings/test_go1_webshop_theme_settings.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/mobile_menu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/mobile_menu/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/mobile_menu/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/mobile_menu/__pycache__/mobile_menu.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/mobile_menu/__pycache__/mobile_menu.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/mobile_menu/mobile_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/mobile_menu/mobile_menu.js -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/mobile_menu/mobile_menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/mobile_menu/mobile_menu.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/mobile_menu/mobile_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/mobile_menu/mobile_menu.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/mobile_menu/test_mobile_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/mobile_menu/test_mobile_menu.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/override_doctype/__pycache__/builder_page.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/override_doctype/__pycache__/builder_page.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/override_doctype/builder_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/override_doctype/builder_page.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/theme_category_details/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/theme_category_details/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/theme_category_details/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/theme_category_details/__pycache__/category_details.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/theme_category_details/__pycache__/category_details.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/theme_category_details/__pycache__/theme_category_details.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/theme_category_details/__pycache__/theme_category_details.cpython-311.pyc -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/theme_category_details/theme_category_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/theme_category_details/theme_category_details.json -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/doctype/theme_category_details/theme_category_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/doctype/theme_category_details/theme_category_details.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/favicon.ico -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/go1_webshop_files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/go1_webshop_files.zip -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/jquery.min.js -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/query.py -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/themes/fashion_theme/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/themes/fashion_theme/theme.css -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/themes/furniture_theme/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/themes/furniture_theme/theme.css -------------------------------------------------------------------------------- /go1_webshop/go1_webshop/workspace/go1_webshop/go1_webshop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/go1_webshop/workspace/go1_webshop/go1_webshop.json -------------------------------------------------------------------------------- /go1_webshop/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/hooks.py -------------------------------------------------------------------------------- /go1_webshop/modules.txt: -------------------------------------------------------------------------------- 1 | Go1 Webshop -------------------------------------------------------------------------------- /go1_webshop/patches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/patches.txt -------------------------------------------------------------------------------- /go1_webshop/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go1_webshop/public/images/User Profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/public/images/User Profile.png -------------------------------------------------------------------------------- /go1_webshop/public/root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/public/root.css -------------------------------------------------------------------------------- /go1_webshop/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go1_webshop/templates/js/custom_html_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/go1_webshop/templates/js/custom_html_block.json -------------------------------------------------------------------------------- /go1_webshop/templates/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go1_webshop/www/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/license.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TridotsTech/Go1-Webshop/HEAD/pyproject.toml --------------------------------------------------------------------------------