├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bin ├── README.md ├── field_table_format.py ├── geo │ └── ward_geos.json ├── recompose.py └── ward_to_parent_codes.py ├── compose.yaml ├── dev.sh ├── fixtures ├── census │ └── wazimap_django_models.json └── youth │ └── wazimap_django_models.json ├── manage.py ├── requirements.txt └── wazimap_za ├── __init__.py ├── apps.py ├── formats ├── __init__.py └── en_ZA │ ├── __init__.py │ └── formats.py ├── geo.py ├── management ├── __init__.py └── commands │ ├── __init__.py │ ├── checkdata.py │ ├── dumppsql.py │ ├── fields_add_to_100.py │ ├── importcsv.py │ └── importsimplecsv.py ├── profiles ├── __init__.py ├── census.py ├── elections.py └── youth.py ├── settings.py ├── static ├── css │ ├── _youth.scss │ ├── _youth_overrides.scss │ ├── _za.scss │ ├── ecd.css │ ├── vendor │ │ └── featherlight.min.css │ ├── wazimap_youth.scss │ └── wazimap_za.scss ├── docs │ └── Youth Explorer-Metadata.xlsx ├── img │ ├── c4sa-logo.png │ ├── cehd-logo.png │ ├── erln-logo.png │ ├── ilifa-logo.jpg │ ├── openup-logo-small.png │ ├── pii-logo.png │ ├── saldru-logo.png │ ├── showcase │ │ ├── enca.png │ │ ├── fin24.png │ │ └── huff.png │ ├── statssa-logo.png │ ├── uct-logo.png │ ├── youth-favicon.ico │ └── youth-logo.png └── js │ ├── affix.js │ ├── maps_mapit.js │ ├── profile_map_mapit.js │ ├── profiles.js │ ├── show_video.js │ ├── vendor │ └── featherlight.min.js │ ├── wazimap-za.js │ └── wazimap_release_warning.js ├── tables.py ├── templates ├── _base.html ├── _footer.html ├── about.html ├── about_youth.html ├── data │ ├── _base_data.html │ ├── _blocks │ │ ├── _lightbox_video.html │ │ └── _youth_data_query_builder.html │ └── data_map.html ├── help.html ├── homepage.html ├── homepage_youth.html ├── homepage_youth_place_finder.html ├── profile │ ├── _blocks │ │ └── _change_release.html │ ├── head2head.html │ ├── profile_detail.html │ ├── profile_detail_census.html │ └── profile_detail_youth.html └── settings_js.html ├── tests ├── __init__.py └── test_profiles.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/app.json -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/field_table_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/bin/field_table_format.py -------------------------------------------------------------------------------- /bin/geo/ward_geos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/bin/geo/ward_geos.json -------------------------------------------------------------------------------- /bin/recompose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/bin/recompose.py -------------------------------------------------------------------------------- /bin/ward_to_parent_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/bin/ward_to_parent_codes.py -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/compose.yaml -------------------------------------------------------------------------------- /dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/dev.sh -------------------------------------------------------------------------------- /fixtures/census/wazimap_django_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/fixtures/census/wazimap_django_models.json -------------------------------------------------------------------------------- /fixtures/youth/wazimap_django_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/fixtures/youth/wazimap_django_models.json -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/requirements.txt -------------------------------------------------------------------------------- /wazimap_za/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wazimap_za/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/apps.py -------------------------------------------------------------------------------- /wazimap_za/formats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wazimap_za/formats/en_ZA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wazimap_za/formats/en_ZA/formats.py: -------------------------------------------------------------------------------- 1 | THOUSAND_SEPARATOR = u'\xa0' 2 | CURRENCY_SYMBOL = 'R' 3 | -------------------------------------------------------------------------------- /wazimap_za/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/geo.py -------------------------------------------------------------------------------- /wazimap_za/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wazimap_za/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wazimap_za/management/commands/checkdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/management/commands/checkdata.py -------------------------------------------------------------------------------- /wazimap_za/management/commands/dumppsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/management/commands/dumppsql.py -------------------------------------------------------------------------------- /wazimap_za/management/commands/fields_add_to_100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/management/commands/fields_add_to_100.py -------------------------------------------------------------------------------- /wazimap_za/management/commands/importcsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/management/commands/importcsv.py -------------------------------------------------------------------------------- /wazimap_za/management/commands/importsimplecsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/management/commands/importsimplecsv.py -------------------------------------------------------------------------------- /wazimap_za/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wazimap_za/profiles/census.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/profiles/census.py -------------------------------------------------------------------------------- /wazimap_za/profiles/elections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/profiles/elections.py -------------------------------------------------------------------------------- /wazimap_za/profiles/youth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/profiles/youth.py -------------------------------------------------------------------------------- /wazimap_za/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/settings.py -------------------------------------------------------------------------------- /wazimap_za/static/css/_youth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/css/_youth.scss -------------------------------------------------------------------------------- /wazimap_za/static/css/_youth_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/css/_youth_overrides.scss -------------------------------------------------------------------------------- /wazimap_za/static/css/_za.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/css/_za.scss -------------------------------------------------------------------------------- /wazimap_za/static/css/ecd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/css/ecd.css -------------------------------------------------------------------------------- /wazimap_za/static/css/vendor/featherlight.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/css/vendor/featherlight.min.css -------------------------------------------------------------------------------- /wazimap_za/static/css/wazimap_youth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/css/wazimap_youth.scss -------------------------------------------------------------------------------- /wazimap_za/static/css/wazimap_za.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/css/wazimap_za.scss -------------------------------------------------------------------------------- /wazimap_za/static/docs/Youth Explorer-Metadata.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/docs/Youth Explorer-Metadata.xlsx -------------------------------------------------------------------------------- /wazimap_za/static/img/c4sa-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/c4sa-logo.png -------------------------------------------------------------------------------- /wazimap_za/static/img/cehd-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/cehd-logo.png -------------------------------------------------------------------------------- /wazimap_za/static/img/erln-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/erln-logo.png -------------------------------------------------------------------------------- /wazimap_za/static/img/ilifa-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/ilifa-logo.jpg -------------------------------------------------------------------------------- /wazimap_za/static/img/openup-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/openup-logo-small.png -------------------------------------------------------------------------------- /wazimap_za/static/img/pii-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/pii-logo.png -------------------------------------------------------------------------------- /wazimap_za/static/img/saldru-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/saldru-logo.png -------------------------------------------------------------------------------- /wazimap_za/static/img/showcase/enca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/showcase/enca.png -------------------------------------------------------------------------------- /wazimap_za/static/img/showcase/fin24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/showcase/fin24.png -------------------------------------------------------------------------------- /wazimap_za/static/img/showcase/huff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/showcase/huff.png -------------------------------------------------------------------------------- /wazimap_za/static/img/statssa-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/statssa-logo.png -------------------------------------------------------------------------------- /wazimap_za/static/img/uct-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/uct-logo.png -------------------------------------------------------------------------------- /wazimap_za/static/img/youth-favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/youth-favicon.ico -------------------------------------------------------------------------------- /wazimap_za/static/img/youth-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/img/youth-logo.png -------------------------------------------------------------------------------- /wazimap_za/static/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/js/affix.js -------------------------------------------------------------------------------- /wazimap_za/static/js/maps_mapit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/js/maps_mapit.js -------------------------------------------------------------------------------- /wazimap_za/static/js/profile_map_mapit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/js/profile_map_mapit.js -------------------------------------------------------------------------------- /wazimap_za/static/js/profiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/js/profiles.js -------------------------------------------------------------------------------- /wazimap_za/static/js/show_video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/js/show_video.js -------------------------------------------------------------------------------- /wazimap_za/static/js/vendor/featherlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/js/vendor/featherlight.min.js -------------------------------------------------------------------------------- /wazimap_za/static/js/wazimap-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/js/wazimap-za.js -------------------------------------------------------------------------------- /wazimap_za/static/js/wazimap_release_warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/static/js/wazimap_release_warning.js -------------------------------------------------------------------------------- /wazimap_za/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/tables.py -------------------------------------------------------------------------------- /wazimap_za/templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/_base.html -------------------------------------------------------------------------------- /wazimap_za/templates/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/_footer.html -------------------------------------------------------------------------------- /wazimap_za/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/about.html -------------------------------------------------------------------------------- /wazimap_za/templates/about_youth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/about_youth.html -------------------------------------------------------------------------------- /wazimap_za/templates/data/_base_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/data/_base_data.html -------------------------------------------------------------------------------- /wazimap_za/templates/data/_blocks/_lightbox_video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/data/_blocks/_lightbox_video.html -------------------------------------------------------------------------------- /wazimap_za/templates/data/_blocks/_youth_data_query_builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/data/_blocks/_youth_data_query_builder.html -------------------------------------------------------------------------------- /wazimap_za/templates/data/data_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/data/data_map.html -------------------------------------------------------------------------------- /wazimap_za/templates/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/help.html -------------------------------------------------------------------------------- /wazimap_za/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/homepage.html -------------------------------------------------------------------------------- /wazimap_za/templates/homepage_youth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/homepage_youth.html -------------------------------------------------------------------------------- /wazimap_za/templates/homepage_youth_place_finder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/homepage_youth_place_finder.html -------------------------------------------------------------------------------- /wazimap_za/templates/profile/_blocks/_change_release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/profile/_blocks/_change_release.html -------------------------------------------------------------------------------- /wazimap_za/templates/profile/head2head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/profile/head2head.html -------------------------------------------------------------------------------- /wazimap_za/templates/profile/profile_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/profile/profile_detail.html -------------------------------------------------------------------------------- /wazimap_za/templates/profile/profile_detail_census.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/profile/profile_detail_census.html -------------------------------------------------------------------------------- /wazimap_za/templates/profile/profile_detail_youth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/profile/profile_detail_youth.html -------------------------------------------------------------------------------- /wazimap_za/templates/settings_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/templates/settings_js.html -------------------------------------------------------------------------------- /wazimap_za/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wazimap_za/tests/test_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/tests/test_profiles.py -------------------------------------------------------------------------------- /wazimap_za/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenUpSA/wazimap-za/HEAD/wazimap_za/wsgi.py --------------------------------------------------------------------------------