├── .github ├── ISSUE_TEMPLATE │ └── c4gt_community.yml └── workflows │ └── ci.yml ├── .gitignore ├── MANIFEST.in ├── README.md ├── docs ├── docs │ ├── doctypes.md │ ├── frappe_rest_api.md │ ├── index.md │ ├── installation.md │ └── location.md └── mkdocs.yml ├── license.txt ├── requirements.txt ├── samaaja ├── __init__.py ├── api │ ├── __init__.py │ ├── action.py │ ├── common.py │ └── location.py ├── config │ ├── __init__.py │ ├── desktop.py │ └── docs.py ├── hooks.py ├── modules.txt ├── overrides │ ├── energy_point_log.py │ └── user.py ├── page_renderers.py ├── patches.txt ├── public │ ├── .gitkeep │ ├── css │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet.css │ │ ├── lightgallery.css │ │ ├── samaaja.bundle.less │ │ └── style.scss │ ├── fonts │ │ ├── lg.svg │ │ ├── lg.ttf │ │ ├── lg.woff │ │ └── lg.woff2 │ ├── icons │ │ ├── edit.png │ │ ├── flag.png │ │ └── location-sign.svg │ ├── images │ │ ├── default-profile-banner.jpg │ │ └── loading.gif │ └── js │ │ ├── leaflet.js │ │ └── lightgallery.min.js ├── samaaja │ ├── __init__.py │ ├── custom │ │ ├── energy_point_log.json │ │ └── energy_point_rule.json │ ├── doctype │ │ ├── __init__.py │ │ ├── asset │ │ │ ├── __init__.py │ │ │ ├── asset.js │ │ │ ├── asset.json │ │ │ ├── asset.py │ │ │ └── test_asset.py │ │ ├── asset_category │ │ │ ├── __init__.py │ │ │ ├── asset_category.js │ │ │ ├── asset_category.json │ │ │ ├── asset_category.py │ │ │ └── test_asset_category.py │ │ ├── asset_status │ │ │ ├── __init__.py │ │ │ ├── asset_status.js │ │ │ ├── asset_status.json │ │ │ ├── asset_status.py │ │ │ └── test_asset_status.py │ │ ├── asset_sub_category │ │ │ ├── __init__.py │ │ │ ├── asset_sub_category.js │ │ │ ├── asset_sub_category.json │ │ │ ├── asset_sub_category.py │ │ │ └── test_asset_sub_category.py │ │ ├── asset_type │ │ │ ├── __init__.py │ │ │ ├── asset_type.js │ │ │ ├── asset_type.json │ │ │ ├── asset_type.py │ │ │ └── test_asset_type.py │ │ ├── badge │ │ │ ├── __init__.py │ │ │ ├── badge.js │ │ │ ├── badge.json │ │ │ ├── badge.py │ │ │ └── test_badge.py │ │ ├── event_category │ │ │ ├── __init__.py │ │ │ ├── event_category.js │ │ │ ├── event_category.json │ │ │ ├── event_category.py │ │ │ └── test_event_category.py │ │ ├── event_source │ │ │ ├── __init__.py │ │ │ ├── event_source.js │ │ │ ├── event_source.json │ │ │ ├── event_source.py │ │ │ └── test_event_source.py │ │ ├── event_status │ │ │ ├── __init__.py │ │ │ ├── event_status.js │ │ │ ├── event_status.json │ │ │ ├── event_status.py │ │ │ └── test_event_status.py │ │ ├── event_sub_category │ │ │ ├── __init__.py │ │ │ ├── event_sub_category.js │ │ │ ├── event_sub_category.json │ │ │ ├── event_sub_category.py │ │ │ └── test_event_sub_category.py │ │ ├── event_type │ │ │ ├── __init__.py │ │ │ ├── event_type.js │ │ │ ├── event_type.json │ │ │ ├── event_type.py │ │ │ ├── event_type_tree.js │ │ │ └── test_event_type.py │ │ ├── events │ │ │ ├── __init__.py │ │ │ ├── events.js │ │ │ ├── events.json │ │ │ ├── events.py │ │ │ └── test_events.py │ │ ├── flag │ │ │ ├── __init__.py │ │ │ ├── flag.js │ │ │ ├── flag.json │ │ │ ├── flag.py │ │ │ └── test_flag.py │ │ ├── flag_status │ │ │ ├── __init__.py │ │ │ ├── flag_status.js │ │ │ ├── flag_status.json │ │ │ ├── flag_status.py │ │ │ └── test_flag_status.py │ │ ├── flag_type │ │ │ ├── __init__.py │ │ │ ├── flag_type.js │ │ │ ├── flag_type.json │ │ │ ├── flag_type.py │ │ │ └── test_flag_type.py │ │ ├── impacted_entity_unit │ │ │ ├── __init__.py │ │ │ ├── impacted_entity_unit.js │ │ │ ├── impacted_entity_unit.json │ │ │ ├── impacted_entity_unit.py │ │ │ └── test_impacted_entity_unit.py │ │ ├── location │ │ │ ├── __init__.py │ │ │ ├── location.js │ │ │ ├── location.json │ │ │ ├── location.py │ │ │ └── test_location.py │ │ ├── microskill │ │ │ ├── __init__.py │ │ │ ├── microskill.js │ │ │ ├── microskill.json │ │ │ ├── microskill.py │ │ │ └── test_microskill.py │ │ ├── samaaja_cities │ │ │ ├── __init__.py │ │ │ ├── samaaja_cities.js │ │ │ ├── samaaja_cities.json │ │ │ ├── samaaja_cities.py │ │ │ └── test_samaaja_cities.py │ │ ├── samaaja_profile_dropdown_option │ │ │ ├── __init__.py │ │ │ ├── samaaja_profile_dropdown_option.json │ │ │ └── samaaja_profile_dropdown_option.py │ │ ├── samaaja_profile_tabs │ │ │ ├── __init__.py │ │ │ ├── samaaja_profile_tabs.js │ │ │ ├── samaaja_profile_tabs.json │ │ │ ├── samaaja_profile_tabs.py │ │ │ └── test_samaaja_profile_tabs.py │ │ ├── samaaja_settings │ │ │ ├── __init__.py │ │ │ ├── samaaja_settings.js │ │ │ ├── samaaja_settings.json │ │ │ ├── samaaja_settings.py │ │ │ └── test_samaaja_settings.py │ │ ├── user_badge │ │ │ ├── __init__.py │ │ │ ├── test_user_badge.py │ │ │ ├── user_badge.js │ │ │ ├── user_badge.json │ │ │ └── user_badge.py │ │ ├── user_metadata │ │ │ ├── __init__.py │ │ │ ├── test_user_metadata.py │ │ │ ├── user_metadata.js │ │ │ ├── user_metadata.json │ │ │ └── user_metadata.py │ │ ├── user_organization │ │ │ ├── __init__.py │ │ │ ├── test_user_organization.py │ │ │ ├── user_organization.js │ │ │ ├── user_organization.json │ │ │ └── user_organization.py │ │ └── user_review │ │ │ ├── __init__.py │ │ │ ├── test_user_review.py │ │ │ ├── user_review.js │ │ │ ├── user_review.json │ │ │ └── user_review.py │ ├── utils.py │ └── web_form │ │ ├── __init__.py │ │ ├── edit_actions │ │ ├── __init__.py │ │ ├── edit_actions.js │ │ ├── edit_actions.json │ │ └── edit_actions.py │ │ ├── edit_your_profile │ │ ├── __init__.py │ │ ├── edit_your_profile.js │ │ ├── edit_your_profile.json │ │ └── edit_your_profile.py │ │ ├── flag_a_user │ │ ├── __init__.py │ │ ├── flag_a_user.js │ │ ├── flag_a_user.json │ │ └── flag_a_user.py │ │ ├── flag_an_action │ │ ├── __init__.py │ │ ├── flag_an_action.js │ │ ├── flag_an_action.json │ │ └── flag_an_action.py │ │ └── record_actions │ │ ├── __init__.py │ │ ├── record_actions.js │ │ ├── record_actions.json │ │ └── record_actions.py ├── tasks.py ├── templates │ ├── __init__.py │ └── pages │ │ └── __init__.py └── www │ ├── __init__.py │ ├── profiles │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.py │ ├── profile.html │ ├── profile.js │ └── profile.py │ ├── reported-profile.html │ └── stats │ ├── __init__.py │ ├── index.html │ └── index.py ├── setup.py └── tox.ini /.github/ISSUE_TEMPLATE/c4gt_community.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/.github/ISSUE_TEMPLATE/c4gt_community.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/README.md -------------------------------------------------------------------------------- /docs/docs/doctypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/docs/docs/doctypes.md -------------------------------------------------------------------------------- /docs/docs/frappe_rest_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/docs/docs/frappe_rest_api.md -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/docs/docs/installation.md -------------------------------------------------------------------------------- /docs/docs/location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/docs/docs/location.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | License: MIT -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/requirements.txt -------------------------------------------------------------------------------- /samaaja/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __version__ = '0.0.1' 3 | 4 | -------------------------------------------------------------------------------- /samaaja/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/api/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/api/action.py -------------------------------------------------------------------------------- /samaaja/api/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/api/common.py -------------------------------------------------------------------------------- /samaaja/api/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/api/location.py -------------------------------------------------------------------------------- /samaaja/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/config/desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/config/desktop.py -------------------------------------------------------------------------------- /samaaja/config/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/config/docs.py -------------------------------------------------------------------------------- /samaaja/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/hooks.py -------------------------------------------------------------------------------- /samaaja/modules.txt: -------------------------------------------------------------------------------- 1 | Samaaja -------------------------------------------------------------------------------- /samaaja/overrides/energy_point_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/overrides/energy_point_log.py -------------------------------------------------------------------------------- /samaaja/overrides/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/overrides/user.py -------------------------------------------------------------------------------- /samaaja/page_renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/page_renderers.py -------------------------------------------------------------------------------- /samaaja/patches.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/public/css/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/css/images/layers-2x.png -------------------------------------------------------------------------------- /samaaja/public/css/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/css/images/layers.png -------------------------------------------------------------------------------- /samaaja/public/css/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/css/images/marker-icon-2x.png -------------------------------------------------------------------------------- /samaaja/public/css/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/css/images/marker-icon.png -------------------------------------------------------------------------------- /samaaja/public/css/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/css/images/marker-shadow.png -------------------------------------------------------------------------------- /samaaja/public/css/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/css/leaflet.css -------------------------------------------------------------------------------- /samaaja/public/css/lightgallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/css/lightgallery.css -------------------------------------------------------------------------------- /samaaja/public/css/samaaja.bundle.less: -------------------------------------------------------------------------------- 1 | 2 | @import "./style.scss"; 3 | -------------------------------------------------------------------------------- /samaaja/public/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/css/style.scss -------------------------------------------------------------------------------- /samaaja/public/fonts/lg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/fonts/lg.svg -------------------------------------------------------------------------------- /samaaja/public/fonts/lg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/fonts/lg.ttf -------------------------------------------------------------------------------- /samaaja/public/fonts/lg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/fonts/lg.woff -------------------------------------------------------------------------------- /samaaja/public/fonts/lg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/fonts/lg.woff2 -------------------------------------------------------------------------------- /samaaja/public/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/icons/edit.png -------------------------------------------------------------------------------- /samaaja/public/icons/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/icons/flag.png -------------------------------------------------------------------------------- /samaaja/public/icons/location-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/icons/location-sign.svg -------------------------------------------------------------------------------- /samaaja/public/images/default-profile-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/images/default-profile-banner.jpg -------------------------------------------------------------------------------- /samaaja/public/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/images/loading.gif -------------------------------------------------------------------------------- /samaaja/public/js/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/js/leaflet.js -------------------------------------------------------------------------------- /samaaja/public/js/lightgallery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/public/js/lightgallery.min.js -------------------------------------------------------------------------------- /samaaja/samaaja/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/custom/energy_point_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/custom/energy_point_log.json -------------------------------------------------------------------------------- /samaaja/samaaja/custom/energy_point_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/custom/energy_point_rule.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset/asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset/asset.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset/asset.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset/asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset/asset.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset/test_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset/test_asset.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_category/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_category/asset_category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_category/asset_category.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_category/asset_category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_category/asset_category.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_category/asset_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_category/asset_category.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_category/test_asset_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_category/test_asset_category.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_status/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_status/asset_status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_status/asset_status.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_status/asset_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_status/asset_status.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_status/asset_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_status/asset_status.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_status/test_asset_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_status/test_asset_status.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_sub_category/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_sub_category/asset_sub_category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_sub_category/asset_sub_category.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_sub_category/asset_sub_category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_sub_category/asset_sub_category.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_sub_category/asset_sub_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_sub_category/asset_sub_category.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_sub_category/test_asset_sub_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_sub_category/test_asset_sub_category.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_type/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_type/asset_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_type/asset_type.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_type/asset_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_type/asset_type.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_type/asset_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_type/asset_type.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/asset_type/test_asset_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/asset_type/test_asset_type.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/badge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/badge/badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/badge/badge.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/badge/badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/badge/badge.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/badge/badge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/badge/badge.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/badge/test_badge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/badge/test_badge.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_category/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_category/event_category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_category/event_category.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_category/event_category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_category/event_category.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_category/event_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_category/event_category.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_category/test_event_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_category/test_event_category.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_source/event_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_source/event_source.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_source/event_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_source/event_source.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_source/event_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_source/event_source.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_source/test_event_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_source/test_event_source.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_status/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_status/event_status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_status/event_status.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_status/event_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_status/event_status.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_status/event_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_status/event_status.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_status/test_event_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_status/test_event_status.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_sub_category/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_sub_category/event_sub_category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_sub_category/event_sub_category.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_sub_category/event_sub_category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_sub_category/event_sub_category.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_sub_category/event_sub_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_sub_category/event_sub_category.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_sub_category/test_event_sub_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_sub_category/test_event_sub_category.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_type/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_type/event_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_type/event_type.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_type/event_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_type/event_type.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_type/event_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_type/event_type.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_type/event_type_tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_type/event_type_tree.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/event_type/test_event_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/event_type/test_event_type.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/events/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/events/events.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/events/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/events/events.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/events/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/events/events.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/events/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/events/test_events.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag/flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/flag/flag.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag/flag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/flag/flag.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/flag/flag.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag/test_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/flag/test_flag.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag_status/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag_status/flag_status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/flag_status/flag_status.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag_status/flag_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/flag_status/flag_status.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag_status/flag_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/flag_status/flag_status.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag_status/test_flag_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/flag_status/test_flag_status.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag_type/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag_type/flag_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/flag_type/flag_type.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag_type/flag_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/flag_type/flag_type.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag_type/flag_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/flag_type/flag_type.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/flag_type/test_flag_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/flag_type/test_flag_type.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/impacted_entity_unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/impacted_entity_unit/impacted_entity_unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/impacted_entity_unit/impacted_entity_unit.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/impacted_entity_unit/impacted_entity_unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/impacted_entity_unit/impacted_entity_unit.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/impacted_entity_unit/impacted_entity_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/impacted_entity_unit/impacted_entity_unit.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/impacted_entity_unit/test_impacted_entity_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/impacted_entity_unit/test_impacted_entity_unit.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/location/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/location/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/location/location.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/location/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/location/location.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/location/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/location/location.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/location/test_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/location/test_location.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/microskill/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/microskill/microskill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/microskill/microskill.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/microskill/microskill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/microskill/microskill.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/microskill/microskill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/microskill/microskill.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/microskill/test_microskill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/microskill/test_microskill.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_cities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_cities/samaaja_cities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_cities/samaaja_cities.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_cities/samaaja_cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_cities/samaaja_cities.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_cities/samaaja_cities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_cities/samaaja_cities.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_cities/test_samaaja_cities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_cities/test_samaaja_cities.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_profile_dropdown_option/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_profile_dropdown_option/samaaja_profile_dropdown_option.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_profile_dropdown_option/samaaja_profile_dropdown_option.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_profile_dropdown_option/samaaja_profile_dropdown_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_profile_dropdown_option/samaaja_profile_dropdown_option.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_profile_tabs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_profile_tabs/samaaja_profile_tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_profile_tabs/samaaja_profile_tabs.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_profile_tabs/samaaja_profile_tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_profile_tabs/samaaja_profile_tabs.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_profile_tabs/samaaja_profile_tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_profile_tabs/samaaja_profile_tabs.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_profile_tabs/test_samaaja_profile_tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_profile_tabs/test_samaaja_profile_tabs.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_settings/samaaja_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_settings/samaaja_settings.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_settings/samaaja_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_settings/samaaja_settings.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_settings/samaaja_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_settings/samaaja_settings.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/samaaja_settings/test_samaaja_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/samaaja_settings/test_samaaja_settings.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_badge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_badge/test_user_badge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_badge/test_user_badge.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_badge/user_badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_badge/user_badge.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_badge/user_badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_badge/user_badge.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_badge/user_badge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_badge/user_badge.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_metadata/test_user_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_metadata/test_user_metadata.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_metadata/user_metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_metadata/user_metadata.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_metadata/user_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_metadata/user_metadata.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_metadata/user_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_metadata/user_metadata.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_organization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_organization/test_user_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_organization/test_user_organization.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_organization/user_organization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_organization/user_organization.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_organization/user_organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_organization/user_organization.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_organization/user_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_organization/user_organization.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_review/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_review/test_user_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_review/test_user_review.py -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_review/user_review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_review/user_review.js -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_review/user_review.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_review/user_review.json -------------------------------------------------------------------------------- /samaaja/samaaja/doctype/user_review/user_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/doctype/user_review/user_review.py -------------------------------------------------------------------------------- /samaaja/samaaja/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/utils.py -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/edit_actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/edit_actions/edit_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/web_form/edit_actions/edit_actions.js -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/edit_actions/edit_actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/web_form/edit_actions/edit_actions.json -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/edit_actions/edit_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/web_form/edit_actions/edit_actions.py -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/edit_your_profile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/edit_your_profile/edit_your_profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/web_form/edit_your_profile/edit_your_profile.js -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/edit_your_profile/edit_your_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/web_form/edit_your_profile/edit_your_profile.json -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/edit_your_profile/edit_your_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/web_form/edit_your_profile/edit_your_profile.py -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/flag_a_user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/flag_a_user/flag_a_user.js: -------------------------------------------------------------------------------- 1 | frappe.ready(function() { 2 | // bind events here 3 | }) -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/flag_a_user/flag_a_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/web_form/flag_a_user/flag_a_user.json -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/flag_a_user/flag_a_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/web_form/flag_a_user/flag_a_user.py -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/flag_an_action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/flag_an_action/flag_an_action.js: -------------------------------------------------------------------------------- 1 | frappe.ready(function() { 2 | // bind events here 3 | }) -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/flag_an_action/flag_an_action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/web_form/flag_an_action/flag_an_action.json -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/flag_an_action/flag_an_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/web_form/flag_an_action/flag_an_action.py -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/record_actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/record_actions/record_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/web_form/record_actions/record_actions.js -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/record_actions/record_actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/web_form/record_actions/record_actions.json -------------------------------------------------------------------------------- /samaaja/samaaja/web_form/record_actions/record_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/samaaja/web_form/record_actions/record_actions.py -------------------------------------------------------------------------------- /samaaja/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/tasks.py -------------------------------------------------------------------------------- /samaaja/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/templates/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/www/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/www/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/www/profiles/__pycache__/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/www/profiles/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/www/profiles/profile.html -------------------------------------------------------------------------------- /samaaja/www/profiles/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/www/profiles/profile.js -------------------------------------------------------------------------------- /samaaja/www/profiles/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/www/profiles/profile.py -------------------------------------------------------------------------------- /samaaja/www/reported-profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/www/reported-profile.html -------------------------------------------------------------------------------- /samaaja/www/stats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samaaja/www/stats/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/www/stats/index.html -------------------------------------------------------------------------------- /samaaja/www/stats/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/samaaja/www/stats/index.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reapbenefit/Samaaja/HEAD/tox.ini --------------------------------------------------------------------------------