├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── license.txt ├── requirements.txt ├── setup.py └── whitelabel ├── __init__.py ├── api.py ├── config ├── __init__.py ├── desktop.py └── docs.py ├── hooks.py ├── modules.txt ├── patches.txt ├── public ├── css │ ├── whitelabel_app.css │ └── whitelabel_web.css ├── images │ └── whitelabel_logo.jpg └── js │ └── whitelabel.js ├── templates ├── __init__.py └── pages │ └── __init__.py └── whitelabel ├── __init__.py └── doctype ├── __init__.py └── whitelabel_setting ├── __init__.py ├── test_whitelabel_setting.py ├── whitelabel_setting.js ├── whitelabel_setting.json └── whitelabel_setting.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | License: MIT -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | frappe -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/setup.py -------------------------------------------------------------------------------- /whitelabel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/whitelabel/__init__.py -------------------------------------------------------------------------------- /whitelabel/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/whitelabel/api.py -------------------------------------------------------------------------------- /whitelabel/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /whitelabel/config/desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/whitelabel/config/desktop.py -------------------------------------------------------------------------------- /whitelabel/config/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/whitelabel/config/docs.py -------------------------------------------------------------------------------- /whitelabel/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/whitelabel/hooks.py -------------------------------------------------------------------------------- /whitelabel/modules.txt: -------------------------------------------------------------------------------- 1 | Whitelabel -------------------------------------------------------------------------------- /whitelabel/patches.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /whitelabel/public/css/whitelabel_app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/whitelabel/public/css/whitelabel_app.css -------------------------------------------------------------------------------- /whitelabel/public/css/whitelabel_web.css: -------------------------------------------------------------------------------- 1 | .footer-powered{ 2 | display: none!important; 3 | } 4 | -------------------------------------------------------------------------------- /whitelabel/public/images/whitelabel_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/whitelabel/public/images/whitelabel_logo.jpg -------------------------------------------------------------------------------- /whitelabel/public/js/whitelabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/whitelabel/public/js/whitelabel.js -------------------------------------------------------------------------------- /whitelabel/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /whitelabel/templates/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /whitelabel/whitelabel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /whitelabel/whitelabel/doctype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /whitelabel/whitelabel/doctype/whitelabel_setting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /whitelabel/whitelabel/doctype/whitelabel_setting/test_whitelabel_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/whitelabel/whitelabel/doctype/whitelabel_setting/test_whitelabel_setting.py -------------------------------------------------------------------------------- /whitelabel/whitelabel/doctype/whitelabel_setting/whitelabel_setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/whitelabel/whitelabel/doctype/whitelabel_setting/whitelabel_setting.js -------------------------------------------------------------------------------- /whitelabel/whitelabel/doctype/whitelabel_setting/whitelabel_setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/whitelabel/whitelabel/doctype/whitelabel_setting/whitelabel_setting.json -------------------------------------------------------------------------------- /whitelabel/whitelabel/doctype/whitelabel_setting/whitelabel_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavesh95863/whitelabel/HEAD/whitelabel/whitelabel/doctype/whitelabel_setting/whitelabel_setting.py --------------------------------------------------------------------------------