├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── README.md ├── TESTING.md ├── actionkit_templates ├── __init__.py ├── aktemplates.py ├── contexts │ ├── __init__.py │ ├── account_contexts.py │ ├── donation_contexts.py │ ├── event_context_json.py │ ├── event_contexts.py │ ├── event_places.csv │ ├── lib.py │ ├── page_contexts.py │ └── survey_contexts.py ├── moveon_fakeapi.py ├── settings.py ├── templates │ ├── homepagetest.html │ └── wrapper.html ├── templatetags │ ├── __init__.py │ ├── actionkit_tags.py │ ├── ak_universal.py │ ├── humanize.py │ ├── smartif.py │ └── switchcase.py └── test.py ├── setup.py └── sonar-project.properties /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/TESTING.md -------------------------------------------------------------------------------- /actionkit_templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionkit_templates/aktemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/aktemplates.py -------------------------------------------------------------------------------- /actionkit_templates/contexts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionkit_templates/contexts/account_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/contexts/account_contexts.py -------------------------------------------------------------------------------- /actionkit_templates/contexts/donation_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/contexts/donation_contexts.py -------------------------------------------------------------------------------- /actionkit_templates/contexts/event_context_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/contexts/event_context_json.py -------------------------------------------------------------------------------- /actionkit_templates/contexts/event_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/contexts/event_contexts.py -------------------------------------------------------------------------------- /actionkit_templates/contexts/event_places.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/contexts/event_places.csv -------------------------------------------------------------------------------- /actionkit_templates/contexts/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/contexts/lib.py -------------------------------------------------------------------------------- /actionkit_templates/contexts/page_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/contexts/page_contexts.py -------------------------------------------------------------------------------- /actionkit_templates/contexts/survey_contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/contexts/survey_contexts.py -------------------------------------------------------------------------------- /actionkit_templates/moveon_fakeapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/moveon_fakeapi.py -------------------------------------------------------------------------------- /actionkit_templates/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/settings.py -------------------------------------------------------------------------------- /actionkit_templates/templates/homepagetest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/templates/homepagetest.html -------------------------------------------------------------------------------- /actionkit_templates/templates/wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/templates/wrapper.html -------------------------------------------------------------------------------- /actionkit_templates/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /actionkit_templates/templatetags/actionkit_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/templatetags/actionkit_tags.py -------------------------------------------------------------------------------- /actionkit_templates/templatetags/ak_universal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/templatetags/ak_universal.py -------------------------------------------------------------------------------- /actionkit_templates/templatetags/humanize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/templatetags/humanize.py -------------------------------------------------------------------------------- /actionkit_templates/templatetags/smartif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/templatetags/smartif.py -------------------------------------------------------------------------------- /actionkit_templates/templatetags/switchcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/templatetags/switchcase.py -------------------------------------------------------------------------------- /actionkit_templates/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/actionkit_templates/test.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/setup.py -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoveOnOrg/actionkit-templates/HEAD/sonar-project.properties --------------------------------------------------------------------------------