├── .bumpversion.cfg ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── other-issues.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CHECKS ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── contrib ├── docker │ ├── release-build.sh │ └── release.sh └── loaddata.sh ├── docker-compose.yml ├── dominion ├── README.md ├── __init__.py ├── data │ ├── __init__.py │ └── utils.py ├── fixtures │ └── dominion.json ├── profiles │ ├── __init__.py │ └── land.py ├── settings.py ├── sql │ ├── access_to_information.sql │ ├── allow_farmers_retain_land_ownership.sql │ ├── erven_land_ownership_in_hectares_by_gender.sql │ ├── erven_land_ownership_in_hectares_by_nationality.sql │ ├── erven_land_ownership_in_hectares_by_race.sql │ ├── excisions.sql │ ├── hectares_transferred_per_province_by_year.sql │ ├── land_acquisation_challenges.sql │ ├── land_to_prioritise_for_redistribution.sql │ ├── land_traded_all_vs_colour_2018.sql │ ├── land_traded_colour_cost_breakdown_2018.sql │ ├── land_traded_colour_hectares_breakdown_2018.sql │ ├── land_traded_colour_priceperhectare_breakdown_2018.sql │ ├── land_traded_colour_transactions_2018.sql │ ├── land_traded_per_class_statistic_2018.sql │ ├── landownership.sql │ ├── landownershipinhectaresbygender.sql │ ├── landownershipinhectaresbynationality.sql │ ├── landownershipinhectaresbyrace.sql │ ├── landuse.sql │ ├── landuser.sql │ ├── maintain_willing_buyer_willing_seller_policy.sql │ ├── number_of_erven_land_owners_per_gender.sql │ ├── number_of_erven_land_owners_per_nationality.sql │ ├── number_of_erven_land_owners_per_race.sql │ ├── numberoflandownerspergender.sql │ ├── numberoflandownerspernationality.sql │ ├── numberoflandownersperrace.sql │ ├── numberofprivatelandownersbycategory.sql │ ├── numberofsectionaltitleownersbycategory.sql │ ├── numberofsectionaltitleownersbygender.sql │ ├── numberofsectionaltitleownersbynationality.sql │ ├── numberofsectionaltitleownersbyrace.sql │ ├── party_benefited.sql │ ├── population.sql │ ├── population_group_2016.sql │ ├── population_residence_2009.sql │ ├── privatelanddistributionbygender.sql │ ├── privatelandownershipinhectares.sql │ ├── privatelandownershipinhectarespercategory.sql │ ├── redistributedlandcostinrands.sql │ ├── redistributedlandinhectares.sql │ ├── redistributedlandusebreakdown.sql │ ├── redistributionprogrammeoutcomebyear.sql │ ├── restitutionoutcomestatic.sql │ ├── sectionaltitleownershipinhectarespercategory.sql │ ├── sectionaltitleownershipinhectarespergender.sql │ ├── sectionaltitleownershipinhectarespernationality.sql │ ├── sectionaltitleownershipinhectaresperrace.sql │ ├── workers_hostel_access_electricity.sql │ ├── workers_hostel_age_group.sql │ ├── workers_hostel_gender.sql │ ├── workers_hostel_geography.sql │ ├── workers_hostel_handwashing_facility.sql │ ├── workers_hostel_living_condition.sql │ ├── workers_hostel_ownership.sql │ ├── workers_hostel_population.sql │ ├── workers_hostel_population_group.sql │ ├── workers_hostel_rent.sql │ ├── workers_hostel_residential_ownership.sql │ ├── workers_hostel_ss_dwelling.sql │ ├── workers_hostel_subsidy.sql │ ├── workers_hostel_toilet_facility.sql │ └── workers_hostel_water_source.sql ├── static │ ├── img │ │ ├── background.png │ │ ├── examples │ │ │ ├── hover_over_graph.png │ │ │ ├── map_search.png │ │ │ ├── section_overview.png │ │ │ └── text_search.png │ │ ├── icons │ │ │ └── blurbs │ │ │ │ ├── analysis.svg │ │ │ │ ├── button-arrow.svg │ │ │ │ ├── checklist.svg │ │ │ │ ├── group.png │ │ │ │ ├── group.svg │ │ │ │ ├── idea.svg │ │ │ │ ├── map.svg │ │ │ │ ├── papyrus.svg │ │ │ │ ├── script.svg │ │ │ │ ├── story.svg │ │ │ │ ├── team.svg │ │ │ │ └── visualization.svg │ │ ├── logos │ │ │ ├── cfafrica-green.png │ │ │ ├── citypress-green.png │ │ │ ├── citypress-white.png │ │ │ ├── citypress.png │ │ │ ├── landbou-green.png │ │ │ ├── landbou-white.png │ │ │ ├── landbou.png │ │ │ ├── ourland-green.png │ │ │ ├── ourland.png │ │ │ ├── pulitzer-center-green.png │ │ │ ├── pulitzer-center-white.svg │ │ │ ├── pulitzer-center.png │ │ │ ├── pulitzer-center.svg │ │ │ ├── rapport-green.png │ │ │ ├── rapport-white.png │ │ │ └── rapport.jpg │ │ └── showcase │ │ │ ├── our_land.jpg │ │ │ ├── showcase1.jpg │ │ │ ├── showcase2.jpg │ │ │ ├── showcase3.jpg │ │ │ ├── showcase4.jpg │ │ │ ├── showcase5.jpg │ │ │ ├── showcase6.jpg │ │ │ ├── showcase7.jpg │ │ │ ├── showcase8.jpg │ │ │ └── showcase9.jpg │ └── js │ │ ├── map_mapit.js │ │ └── profile_map_mapit.js ├── tables.py ├── templates │ ├── homepage.html │ ├── profile │ │ ├── head2head.html │ │ └── profile_detail.html │ └── settings_js.html ├── urls.py └── views.py ├── elimu_yangu ├── __init__.py ├── careerguide │ ├── __init__.py │ ├── admin.py │ ├── alsubjects.json │ ├── career.py │ ├── forms.py │ ├── locale │ │ └── sw │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── models.py │ ├── olsubjects.json │ ├── templates │ │ └── careerguide │ │ │ ├── homepage.html │ │ │ ├── school.html │ │ │ └── subjects.html │ ├── urls.py │ └── views.py ├── fixtures │ └── elimu_yangu.json ├── leaguetable │ ├── __init__.py │ ├── locale │ │ └── sw │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── tables.py │ ├── templates │ │ └── leaguetable │ │ │ ├── embed.html │ │ │ ├── embed_map.html │ │ │ ├── footer.html │ │ │ ├── homepage.html │ │ │ ├── profile │ │ │ ├── head2head.html │ │ │ └── profile_detail.html │ │ │ ├── schools.html │ │ │ └── specific_school.html │ ├── urls.py │ └── views.py ├── locale │ └── sw │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── profiles │ ├── __init__.py │ └── census.py ├── settings.py ├── sql │ ├── alevel_overall_performance.sql │ ├── alevel_student_performance.sql │ ├── alevel_subject_performance.sql │ ├── olevel_overall_performance.sql │ ├── olevel_student_performance_2016.sql │ ├── olevel_student_performance_2017.sql │ ├── olevel_subject_performance.sql │ ├── secondary_school.sql │ └── university_finder.sql ├── static │ ├── css │ │ ├── arrow.css │ │ ├── site.css │ │ ├── step.css │ │ └── style.css │ ├── img │ │ ├── IPPMedia.png │ │ ├── arrow-down-white.png │ │ ├── arrow-down.png │ │ ├── banners │ │ │ ├── global.jpg │ │ │ ├── ke-mobile.jpg │ │ │ ├── ke-web.jpg │ │ │ ├── ke.jpg │ │ │ ├── tz-mobile.jpg │ │ │ ├── tz-web.jpg │ │ │ ├── tz.jpg │ │ │ ├── ug-mobile.jpg │ │ │ ├── ug-web.jpg │ │ │ ├── ug.jpg │ │ │ ├── za-mobile.jpg │ │ │ ├── za-web.jpg │ │ │ ├── zm-mobile.jpg │ │ │ ├── zm-web.jpg │ │ │ └── zm.jpg │ │ ├── bg.jpg │ │ ├── census.png │ │ ├── census_over.png │ │ ├── cfafrica-white.png │ │ ├── chart.png │ │ ├── code4sa-logo-small.png │ │ ├── development.png │ │ ├── development_over.png │ │ ├── education.png │ │ ├── education_over.png │ │ ├── examples │ │ │ ├── education_cleveland.png │ │ │ ├── hover_over_graph.png │ │ │ ├── language_los_angeles.png │ │ │ ├── map_search.png │ │ │ ├── poverty_spokane.png │ │ │ ├── section_overview.png │ │ │ ├── text_search.png │ │ │ ├── us_geographic_mobility_distribution.png │ │ │ ├── us_median_income_map.png │ │ │ └── us_race_table.png │ │ ├── find_facts.png │ │ ├── get_context.png │ │ ├── health.png │ │ ├── health_over.png │ │ ├── hurumap-logo.png │ │ ├── icfj-logo.png │ │ ├── icons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── blurbs │ │ │ │ ├── context.png │ │ │ │ ├── facts.png │ │ │ │ └── visualise.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── favicon0.ico │ │ │ ├── manifest.json │ │ │ ├── mstile-150x150.png │ │ │ ├── safari-pinned-tab.svg │ │ │ ├── topics │ │ │ │ ├── census.png │ │ │ │ ├── census_over.png │ │ │ │ ├── development.png │ │ │ │ ├── development_over.png │ │ │ │ ├── education.png │ │ │ │ ├── education_over.png │ │ │ │ ├── health.png │ │ │ │ └── health_over.png │ │ │ └── touch-icon-144x144.png │ │ ├── kipato.png │ │ ├── logo-48x24.png │ │ ├── logo-embed.png │ │ ├── logo-hi-res-white.png │ │ ├── logo-hi-res.png │ │ ├── logo-white.png │ │ ├── logo.png │ │ ├── logo0.png │ │ ├── logo12.png │ │ ├── logo_bw.png │ │ ├── logos │ │ │ ├── bmgf-white.png │ │ │ ├── bmgf.png │ │ │ ├── books.png │ │ │ ├── cf-tanzania-logo.png │ │ │ ├── cfafrica-white.png │ │ │ ├── cfafrica.png │ │ │ ├── cftanzania-hi-res.png │ │ │ ├── cftanzania-white.png │ │ │ ├── cftanzania.png │ │ │ ├── datazetu.png │ │ │ ├── icfj-long-white.png │ │ │ ├── icfj-long.png │ │ │ ├── icfj-white-2.png │ │ │ ├── icfj-white.png │ │ │ ├── icfj.png │ │ │ ├── nukta.png │ │ │ ├── open-book.png │ │ │ ├── twaweza-white.png │ │ │ ├── twaweza.png │ │ │ ├── world_bank_group_logo.png │ │ │ └── world_bank_group_vertial_white_logo.png │ │ ├── map.png │ │ ├── mma.png │ │ ├── openup-logo-small.png │ │ ├── questions │ │ │ ├── age-sex.png │ │ │ ├── ancestry.png │ │ │ ├── citizenship.png │ │ │ ├── commuting.png │ │ │ ├── disability.png │ │ │ ├── education.png │ │ │ ├── employment.png │ │ │ ├── fertility.png │ │ │ ├── health-insurance.png │ │ │ ├── housing-fuel.png │ │ │ ├── income.png │ │ │ ├── industry.png │ │ │ ├── language.png │ │ │ ├── marriage.png │ │ │ ├── migration.png │ │ │ ├── mortgage.png │ │ │ ├── occupation.png │ │ │ ├── place-of-birth.png │ │ │ ├── property-value.png │ │ │ ├── public-assistance.png │ │ │ ├── race.png │ │ │ ├── relationship.png │ │ │ ├── same-sex.png │ │ │ ├── seniors.png │ │ │ ├── tenure.png │ │ │ ├── va_rating.png │ │ │ ├── veteran.png │ │ │ └── veteran_period.png │ │ ├── showcase │ │ │ ├── IPPMedia.png │ │ │ ├── crime.jpg │ │ │ ├── donkeys.jpg │ │ │ ├── early-pregnancy.jpg │ │ │ ├── kipato.png │ │ │ └── uwezo.png │ │ ├── twaweza-logo.png │ │ ├── tz.png │ │ ├── us.png │ │ ├── uwezo.png │ │ ├── visualise.png │ │ ├── wazi-logo.png │ │ └── world_bank_group_logo.png │ ├── js │ │ ├── bootstrap │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery.barfiller.js │ │ ├── site.js │ │ ├── vendor │ │ │ ├── anchor.min.js │ │ │ ├── clipboard.min.js │ │ │ ├── holder.min.js │ │ │ ├── images │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon-2x2.png │ │ │ │ ├── marker-icon-2x3.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── jquery.min.js │ │ │ └── popper.min.js │ │ └── widget.geo.select.js │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery.nice-select │ │ ├── css │ │ │ └── nice-select.css │ │ └── js │ │ │ └── jquery.nice-select.min.js │ │ ├── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ └── owlcarousel │ │ ├── css │ │ ├── owl.carousel.css │ │ └── owl.theme.css │ │ └── js │ │ ├── owl.carousel.min.js │ │ └── owl.carousel2.thumbs.min.js ├── tables.py ├── templates │ ├── about.html │ ├── footer.html │ ├── homepage.html │ └── homepage_country.html ├── universityfinder │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── locale │ │ └── sw │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── css │ │ │ ├── bootstrap │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── style.css │ │ └── js │ │ │ ├── bootstrap │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ │ ├── jquery.barfiller.js │ │ │ └── vendor │ │ │ ├── anchor.min.js │ │ │ ├── clipboard.min.js │ │ │ ├── holder.min.js │ │ │ ├── jquery.min.js │ │ │ └── popper.min.js │ ├── templates │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── urls.py └── views.py ├── hurumap_global ├── __init__.py ├── settings.py ├── sql │ └── wazimap_geography.sql └── templates │ └── homepage.html ├── hurumap_ke ├── __init__.py ├── fixtures │ └── hurumap_ke.json ├── profiles │ ├── __init__.py │ └── census.py ├── settings.py ├── sql │ ├── agegroup_gender.sql │ ├── ageincompletedyears_ruralorurban_sex.sql │ ├── avg_household_size.sql │ ├── chinas_assistance_meets_country_needs.sql │ ├── chinas_influence_on_economy.sql │ ├── chinas_influence_positive_or_negative.sql │ ├── contraceptive_method.sql │ ├── contraceptive_modern_method.sql │ ├── contraceptive_traditional_method.sql │ ├── contraceptive_use.sql │ ├── corruption_business_executives.sql │ ├── corruption_gov_officials.sql │ ├── corruption_judges_and_magistrates.sql │ ├── corruption_local_gov_councilors.sql │ ├── corruption_mps.sql │ ├── corruption_police.sql │ ├── corruption_president_office.sql │ ├── corruption_religious_leaders.sql │ ├── corruption_tax_officials.sql │ ├── corruption_traditional_leaders.sql │ ├── courts_make_binding_decisions.sql │ ├── crimereport.sql │ ├── crop_production.sql │ ├── difficulty_to_obtain_household_services.sql │ ├── difficulty_to_obtain_identity_document.sql │ ├── difficulty_to_obtain_medical_treatment.sql │ ├── difficulty_to_obtain_public_school_services.sql │ ├── education_of_respondent.sql │ ├── election_attend_campaign_meeting.sql │ ├── election_attend_campaign_rally.sql │ ├── election_work_for_candidate_or_party.sql │ ├── elections_ensure_voters_views_are_reflected.sql │ ├── elections_to_remove_leaders_from_office.sql │ ├── employer_of_respondent.sql │ ├── employment_status.sql │ ├── employmentactivitystatus_sex.sql │ ├── extent_of_democracy.sql │ ├── fertility.sql │ ├── freeness_and_fairness_last_elections.sql │ ├── gender_ruralorurban.sql │ ├── health_facilities_type.sql │ ├── healthratios.sql │ ├── heightforage.sql │ ├── highesteducationlevelreached.sql │ ├── household_heads.sql │ ├── household_itn_use_users.sql │ ├── householdpossessionofitn.sql │ ├── households_and_population.sql │ ├── how_often_use_a_mobile_phone.sql │ ├── how_often_use_the_internet.sql │ ├── knowledgeofhivpreventionmethods_sex.sql │ ├── level_of_corruption.sql │ ├── livestock_population.sql │ ├── livestock_products.sql │ ├── main_reason_for_not_reporting_corruption.sql │ ├── mainmodeofhumanwastedisposal.sql │ ├── mainsourceofwater.sql │ ├── maintypeoffloormaterial.sql │ ├── maintypeoflightingfuel.sql │ ├── maintypeofroofingmaterial.sql │ ├── maintypeofwallmaterial.sql │ ├── maternalcareindicators.sql │ ├── most_effective_way_to_combat_corruption.sql │ ├── negative_image_of_china.sql │ ├── occupation_of_respondent.sql │ ├── own_mobile_phone.sql │ ├── own_motor_vehicle.sql │ ├── own_radio.sql │ ├── own_television.sql │ ├── pay_bribe_for_document_or_permit.sql │ ├── pay_bribe_for_household_services.sql │ ├── pay_bribe_for_school_services.sql │ ├── pay_bribe_treatment_public_health.sql │ ├── people_can_fight_corruption.sql │ ├── people_must_obey_the_law.sql │ ├── people_must_pay_taxes.sql │ ├── population_sex_2019.sql │ ├── positive_image_of_china.sql │ ├── protests.sql │ ├── religion.sql │ ├── satisfaction_with_democracy.sql │ ├── schoolattendance_sex.sql │ ├── schoolfires.sql │ ├── subcounty_population_sex_2019.sql │ ├── treatment_type.sql │ ├── treatmentofchildrenwithfever.sql │ ├── typesofcrime.sql │ ├── useofipt.sql │ ├── vaccinations.sql │ ├── vote_for_which_party.sql │ ├── voterregistration_2015.sql │ ├── voterregistration_2017.sql │ ├── voting_recent_national_election.sql │ ├── wazimap_geography.sql │ ├── weightforage.sql │ └── weightforheight.sql ├── static │ └── img │ │ ├── logo-hi-res-white.png │ │ ├── logo-white.png │ │ ├── logos │ │ ├── cfkenya-logo-white.png │ │ └── cfkenya-logo.png │ │ └── showcase │ │ ├── crowds.jpg │ │ ├── money.jpg │ │ ├── road.jpeg │ │ ├── savanna.jpg │ │ ├── school.jpg │ │ ├── van.jpeg │ │ └── water.jpeg ├── tables.py └── templates │ ├── _footer.html │ ├── homepage.html │ └── profile │ └── profile_detail.html ├── hurumap_land ├── __init__.py ├── fixtures │ └── hurumap_land.json ├── geo.py ├── profiles │ ├── __init__.py │ └── land.py ├── script │ ├── agrids_distribution.py │ ├── agrids_district_Statistic.py │ ├── agrids_summary.py │ ├── towndistrictcodemapping.json │ └── towndistrictlevelmapping.json ├── settings.py ├── sql │ ├── access_to_information.sql │ ├── allow_farmers_retain_land_ownership.sql │ ├── ervenlandownershipinhectaresbygender.sql │ ├── ervenlandownershipinhectaresbynationality.sql │ ├── ervenlandownershipinhectaresbyrace.sql │ ├── hectarestransferredperprovincebyyear.sql │ ├── land_acquisation_challenges.sql │ ├── land_to_prioritise_for_redistribution.sql │ ├── land_traded_all_vs_colour_2018.sql │ ├── land_traded_colour_cost_breakdown_2018.sql │ ├── land_traded_colour_hectares_breakdown_2018.sql │ ├── land_traded_colour_priceperhectare_breakdown_2018.sql │ ├── land_traded_colour_transactions_2018.sql │ ├── land_traded_per_class_statistic_2018.sql │ ├── landownership.sql │ ├── landownershipinhectaresbygender.sql │ ├── landownershipinhectaresbynationality.sql │ ├── landownershipinhectaresbyrace.sql │ ├── landsalesdistributionaverageprice.sql │ ├── landsalesdistributionaveragepricejuly.sql │ ├── landsalesdistributionaveragetrends.sql │ ├── landsalesdistributionhectares.sql │ ├── landsalesdistributionhighestprice.sql │ ├── landsalesdistributionlowestprice.sql │ ├── landsalesdistributionpricetrends.sql │ ├── landsalesdistributiontransaction.sql │ ├── landsalessummarycosttcolour.sql │ ├── landsalessummaryhectarestcolours.sql │ ├── landsalessummarypricetcolour.sql │ ├── landsalessummarytransactionscolour.sql │ ├── landuse.sql │ ├── landuser.sql │ ├── maintain_willing_buyer_willing_seller_policy.sql │ ├── numberofervenlandownerspergender.sql │ ├── numberofervenlandownerspernationality.sql │ ├── numberofervenlandownersperrace.sql │ ├── numberoflandownerspergender.sql │ ├── numberoflandownerspernationality.sql │ ├── numberoflandownersperrace.sql │ ├── numberofprivatelandownersbycategory.sql │ ├── numberofsectionaltitleownersbycategory.sql │ ├── numberofsectionaltitleownersbygender.sql │ ├── numberofsectionaltitleownersbynationality.sql │ ├── numberofsectionaltitleownersbyrace.sql │ ├── party_benefited.sql │ ├── population.sql │ ├── populationgroup_2016.sql │ ├── privatelanddistributionbygender.sql │ ├── privatelandownershipinhectares.sql │ ├── privatelandownershipinhectarespercategory.sql │ ├── redistributedlandaveragecostperhectares.sql │ ├── redistributedlandcostinrands.sql │ ├── redistributedlandinhectares.sql │ ├── redistributedlandusebreakdown.sql │ ├── redistributionprogrammeoutcomebyear.sql │ ├── restitutionoutcomestatic.sql │ ├── sectionaltitleownershipinhectarespercategory.sql │ ├── sectionaltitleownershipinhectarespergender.sql │ ├── sectionaltitleownershipinhectarespernationality.sql │ ├── sectionaltitleownershipinhectaresperrace.sql │ ├── town_district_land_traded_statistic_2018.sql │ ├── towndistrictdistributionavgprice.sql │ ├── towndistrictdistributionhectares.sql │ ├── towndistrictdistributionpricetrends.sql │ ├── towndistrictdistributiontransactions.sql │ ├── workers_hostel_access_electricity.sql │ ├── workers_hostel_age_group.sql │ ├── workers_hostel_gender.sql │ ├── workers_hostel_geography.sql │ ├── workers_hostel_handwashing_facility.sql │ ├── workers_hostel_living_condition.sql │ ├── workers_hostel_ownership.sql │ ├── workers_hostel_population.sql │ ├── workers_hostel_population_group.sql │ ├── workers_hostel_rent.sql │ ├── workers_hostel_residential_ownership.sql │ ├── workers_hostel_ss_dwelling.sql │ ├── workers_hostel_subsidy.sql │ ├── workers_hostel_toilet_facility.sql │ └── workers_hostel_water_source.sql ├── static │ ├── css │ │ └── hurumap_land.scss │ ├── img │ │ ├── examples │ │ │ ├── hover_over_graph.png │ │ │ ├── map_search.png │ │ │ ├── section_overview.png │ │ │ └── text_search.png │ │ ├── icons │ │ │ └── blurbs │ │ │ │ ├── analysis.svg │ │ │ │ ├── button-arrow.svg │ │ │ │ ├── checklist.svg │ │ │ │ ├── group.png │ │ │ │ ├── group.svg │ │ │ │ ├── idea.svg │ │ │ │ ├── map.svg │ │ │ │ ├── papyrus.svg │ │ │ │ ├── script.svg │ │ │ │ ├── story.svg │ │ │ │ ├── team.svg │ │ │ │ └── visualization.svg │ │ ├── logos │ │ │ ├── cfafrica-green.png │ │ │ ├── citypress-green.png │ │ │ ├── citypress-white.png │ │ │ ├── citypress.png │ │ │ ├── landbou-green.png │ │ │ ├── landbou-white.png │ │ │ ├── landbou.png │ │ │ ├── ourland-green.png │ │ │ ├── ourland.png │ │ │ ├── pulitzer-center-green.png │ │ │ ├── pulitzer-center-white.svg │ │ │ ├── pulitzer-center.png │ │ │ ├── pulitzer-center.svg │ │ │ ├── rapport-green.png │ │ │ ├── rapport-white.png │ │ │ └── rapport.jpg │ │ └── showcase │ │ │ ├── our_land.jpg │ │ │ ├── showcase_1.jpg │ │ │ ├── showcase_2.jpg │ │ │ └── showcase_3.jpg │ ├── js │ │ ├── maps_mapit.js │ │ └── profile_map_mapit.js │ └── logo-white.png ├── tables.py ├── templates │ ├── _base.html │ ├── _footer.html │ ├── about.html │ ├── blocks │ │ ├── partners.html │ │ └── showcase.html │ ├── homepage.html │ ├── profile │ │ └── profile_detail.html │ └── settings_js.html ├── templatetags │ ├── __init__.py │ └── hashtospace.py └── urls.py ├── hurumap_ng ├── __init__.py ├── fixtures │ └── hurumap_ng.json ├── profiles.py ├── settings.py ├── sql │ ├── access_to_bank.sql │ ├── access_to_wash.sql │ ├── adolescent_fertility.sql │ ├── air_transportation_domestic.sql │ ├── air_transportation_international.sql │ ├── arrested_suspects.sql │ ├── automative_gas_oil_volumes.sql │ ├── avg_number_bribes.sql │ ├── aviation_turbine_kerosene_volumes.sql │ ├── awareness_of_fed_gov_intiative.sql │ ├── awareness_of_smedan.sql │ ├── bank_credit.sql │ ├── bank_deposit.sql │ ├── benefit_from_smedan.sql │ ├── birth_registration.sql │ ├── bribery_prevalence.sql │ ├── business_operation_equipment_source.sql │ ├── business_reg_with_cac.sql │ ├── case_of_corruption.sql │ ├── compiled_hd_indeces.sql │ ├── consumer_price_index.sql │ ├── contraceptive_use.sql │ ├── conviction_secured.sql │ ├── counselling_concluded.sql │ ├── crime_summary.sql │ ├── diesel_price.sql │ ├── diseal_yearly.sql │ ├── domestic_flights.sql │ ├── driver_licences_processed.sql │ ├── driver_licences_processed_age.sql │ ├── driver_licences_processed_gender.sql │ ├── drug_arrests.sql │ ├── drug_convictions.sql │ ├── drug_counselling.sql │ ├── drug_use.sql │ ├── drugs_seized.sql │ ├── employment_in_civil_services.sql │ ├── enterprise_registered.sql │ ├── external_domestic_debt.sql │ ├── faac.sql │ ├── faac_yearly.sql │ ├── fertility_rate.sql │ ├── generated_revenue.sql │ ├── governor_deputy_governor.sql │ ├── groundnut_production.sql │ ├── hdi_education.sql │ ├── hiv_arvs.sql │ ├── hiv_patient.sql │ ├── household_kerosene_volumes.sql │ ├── immunization_coverage.sql │ ├── international_flights.sql │ ├── jamb.sql │ ├── junior_secondary_school_enrollment.sql │ ├── kerosene_price_gallon.sql │ ├── kerosene_price_litre.sql │ ├── labour_force.sql │ ├── literacy.sql │ ├── local_govt_gender_dist.sql │ ├── lpg_price_10kg.sql │ ├── lpg_price_5kg.sql │ ├── maize_production.sql │ ├── marriage_distribution.sql │ ├── maternal_mortality.sql │ ├── micro_enterprises.sql │ ├── mineral_production.sql │ ├── mobile_subscription.sql │ ├── mobile_subscription_q1_2019.sql │ ├── mobile_subscription_q2_2019.sql │ ├── nominal_gdp.sql │ ├── number_of_dentists.sql │ ├── number_of_doctors.sql │ ├── number_of_officials.sql │ ├── number_of_plates.sql │ ├── offences_against_authority.sql │ ├── offences_against_person.sql │ ├── offences_against_property.sql │ ├── officer_house_assembly.sql │ ├── passport_application.sql │ ├── passport_issued.sql │ ├── passport_re_issued.sql │ ├── petrol_price.sql │ ├── petroleum_gas_distribution.sql │ ├── petroleum_motor_spirit_price.sql │ ├── population_projection.sql │ ├── population_sex.sql │ ├── postal_data.sql │ ├── postal_data_services.sql │ ├── premium_motor_spirit_volumes.sql │ ├── prepaid_metres.sql │ ├── primary_school_enrollment.sql │ ├── prison_capacity.sql │ ├── prison_population.sql │ ├── reported_bribery.sql │ ├── road_traffic_accidents.sql │ ├── senior_secondary_school_enrollment.sql │ ├── suspects_prosecuted.sql │ ├── technical_school.sql │ ├── telecom_subscription.sql │ ├── total_employment_2017.sql │ ├── transport_air_fare.sql │ ├── transport_bus_intercity_fare.sql │ ├── transport_bus_within_cityfare.sql │ ├── transport_motorcycle_fare.sql │ ├── transport_water_fare.sql │ ├── travel_certificates.sql │ ├── uder_employment_rate.sql │ ├── underweight_children.sql │ ├── unemployment_rate.sql │ ├── vaccine_coverage.sql │ ├── wazimap_geography.sql │ └── youth_services_corp_dev.sql ├── static │ ├── css │ │ └── ng.scss │ ├── img │ │ ├── examples │ │ │ ├── hover_over_graph.png │ │ │ ├── map_search.png │ │ │ ├── section_overview.png │ │ │ └── text_search.png │ │ ├── logo-white.png │ │ ├── logo-white_insights.png │ │ ├── logo.png │ │ ├── logos │ │ │ ├── brown.png │ │ │ ├── nan.png │ │ │ ├── nbs-white.png │ │ │ └── nbs.png │ │ └── showcase │ │ │ ├── story-cooking-gas-2.jpg │ │ │ ├── story-foodstuff-prices-2.jpg │ │ │ └── story-nigeria-gdp.jpg │ └── js │ │ └── charts.js ├── tables.py ├── templates │ ├── _base.html │ ├── _footer.html │ ├── about.html │ ├── blocks │ │ └── partners.html │ ├── homepage.html │ ├── insights.html │ └── profile │ │ └── profile_detail.html ├── urls.py └── views.py ├── hurumap_tz ├── __init__.py ├── fixtures │ └── hurumap_tz.json ├── profiles │ ├── __init__.py │ └── census.py ├── settings.py ├── sql │ ├── ageincompletedyears_ruralorurban_sex.sql │ ├── airporttypes.sql │ ├── causesofdeathoverfive.sql │ ├── causesofdeathunderfive.sql │ ├── chinas_assistance_meets_country_needs.sql │ ├── chinas_influence_on_economy.sql │ ├── chinas_influence_positive_or_negative.sql │ ├── corruption_business_executives.sql │ ├── corruption_gov_officials.sql │ ├── corruption_judges_and_magistrates.sql │ ├── corruption_local_gov_councilors.sql │ ├── corruption_mps.sql │ ├── corruption_police.sql │ ├── corruption_president_office.sql │ ├── corruption_religious_leaders.sql │ ├── corruption_tax_officials.sql │ ├── corruption_traditional_leaders.sql │ ├── courts_make_binding_decisions.sql │ ├── difficulty_to_obtain_household_services.sql │ ├── difficulty_to_obtain_identity_document.sql │ ├── difficulty_to_obtain_medical_treatment.sql │ ├── difficulty_to_obtain_public_school_services.sql │ ├── education_of_respondent.sql │ ├── election_attend_campaign_meeting.sql │ ├── election_attend_campaign_rally.sql │ ├── election_work_for_candidate_or_party.sql │ ├── elections_ensure_voters_views_are_reflected.sql │ ├── elections_to_remove_leaders_from_office.sql │ ├── employer_of_respondent.sql │ ├── employment_status.sql │ ├── employmentactivitystatus_sex.sql │ ├── extent_of_democracy.sql │ ├── familyplanningclients.sql │ ├── freeness_and_fairness_last_elections.sql │ ├── healthcenterownership.sql │ ├── healthcenters.sql │ ├── healthworkers.sql │ ├── highesteducationlevelreached.sql │ ├── hivcenters.sql │ ├── how_often_use_a_mobile_phone.sql │ ├── how_often_use_the_internet.sql │ ├── inpatientdiagnosisoverfive.sql │ ├── inpatientdiagnosisunderfive.sql │ ├── level_of_corruption.sql │ ├── literacytest.sql │ ├── main_reason_for_not_reporting_corruption.sql │ ├── most_effective_way_to_combat_corruption.sql │ ├── negative_image_of_china.sql │ ├── occupation_of_respondent.sql │ ├── outpatientdiagnosisoverfive.sql │ ├── outpatientdiagnosisunderfive.sql │ ├── own_mobile_phone.sql │ ├── own_motor_vehicle.sql │ ├── own_radio.sql │ ├── own_television.sql │ ├── pay_bribe_for_document_or_permit.sql │ ├── pay_bribe_for_household_services.sql │ ├── pay_bribe_for_school_services.sql │ ├── pay_bribe_treatment_public_health.sql │ ├── people_can_fight_corruption.sql │ ├── people_must_obey_the_law.sql │ ├── people_must_pay_taxes.sql │ ├── pepfar.sql │ ├── placeofdelivery.sql │ ├── population_by_religion.sql │ ├── population_by_residence.sql │ ├── population_by_sex.sql │ ├── positive_image_of_china.sql │ ├── primaryschoolteachers.sql │ ├── region.sql │ ├── ruralorurban_sex.sql │ ├── satisfaction_with_democracy.sql │ ├── schoolattendance.sql │ ├── schoolattendance_sex.sql │ ├── tetanusvaccine.sql │ ├── trafficandcrimes.sql │ ├── vote_for_which_party.sql │ ├── voting_recent_national_election.sql │ └── watersources.sql ├── static │ └── img │ │ ├── logo-hi-res-white.png │ │ ├── logo-white.png │ │ ├── logos │ │ ├── bmgf.png │ │ ├── cf-tanzania-logo.png │ │ ├── cftanzania-logo-white.png │ │ ├── cftanzania-logo.png │ │ ├── datazetu.png │ │ ├── icfj-logo.png │ │ ├── pepfar.png │ │ ├── twaweza.png │ │ └── world-bank-group.png │ │ └── showcase │ │ ├── cti.jpg │ │ ├── kipato.jpg │ │ └── uwezo.jpg ├── tables.py └── templates │ ├── blocks │ ├── partners.html │ └── showcase.html │ ├── homepage.html │ └── profile │ └── profile_detail.html ├── hurumap_ug ├── __init__.py ├── fixtures │ └── hurumap_ug.json ├── profiles │ ├── __init__.py │ └── census.py ├── settings.py ├── sql │ ├── chinas_assistance_does_a_good_job_at_meeting_countrys_needs.sql │ ├── chinas_influence_on_economy.sql │ ├── chinas_influence_positive_or_negative.sql │ ├── corruption_business_executives.sql │ ├── corruption_government_officials.sql │ ├── corruption_judges_and_magistrates.sql │ ├── corruption_local_government_councilors.sql │ ├── corruption_members_of_parliament.sql │ ├── corruption_office_of_the_presidency.sql │ ├── corruption_police.sql │ ├── corruption_religious_leaders.sql │ ├── corruption_tax_officials.sql │ ├── corruption_traditional_leaders.sql │ ├── courts_make_binding_decisions.sql │ ├── difficulty_to_obtain_household_services.sql │ ├── difficulty_to_obtain_identity_document.sql │ ├── difficulty_to_obtain_medical_treatment.sql │ ├── difficulty_to_obtain_public_school_services.sql │ ├── disability.sql │ ├── disabledornot.sql │ ├── education_of_respondent.sql │ ├── elections_enable_voters_to_remove_leaders_from_office.sql │ ├── elections_ensure_voters_views_are_reflected.sql │ ├── employer_of_respondent.sql │ ├── employment_status.sql │ ├── extent_of_democracy.sql │ ├── freeness_and_fairness_of_the_last_national_election.sql │ ├── household.sql │ ├── householddistributionbyenergysource.sql │ ├── householddistributionbylightsource.sql │ ├── householdpercentagebypermanency.sql │ ├── how_effective_the_news_media_reveals_government_mistakes_and_corruption.sql │ ├── how_often_use_a_mobile_phone.sql │ ├── how_often_use_the_internet.sql │ ├── last_national_election_attend_a_campaign_meeting.sql │ ├── last_national_election_attend_a_campaign_rally.sql │ ├── last_national_election_persuade_others_to_vote_for_a_certain_candidate_or_party.sql │ ├── last_national_election_work_for_a_candidate_or_party.sql │ ├── level_of_corruption.sql │ ├── main_reason_for_not_reporting_corruption.sql │ ├── most_effective_way_to_combat_corruption.sql │ ├── negative_image_of_china.sql │ ├── occupation_of_respondent.sql │ ├── own_mobile_phone.sql │ ├── own_motor_vehicle.sql │ ├── own_radio.sql │ ├── own_television.sql │ ├── pay_bribe_for_document_or_permit.sql │ ├── pay_bribe_for_household_services.sql │ ├── pay_bribe_for_school_services.sql │ ├── pay_bribe_for_treatment_at_public_clinic_or_hospital.sql │ ├── people_can_fight_corruption.sql │ ├── people_must_obey_the_law.sql │ ├── people_must_pay_taxes.sql │ ├── positive_image_of_china.sql │ ├── presidentialcandidate.sql │ ├── ruralorurban.sql │ ├── satisfaction_with_democracy.sql │ ├── sex.sql │ ├── vote_for_which_party.sql │ ├── voting_in_the_most_recent_national_election.sql │ └── wazimap_geography.sql ├── static │ └── img │ │ └── logo-white.png ├── tables.py └── templates │ ├── homepage.html │ └── profile │ └── profile_detail.html ├── hurumap_zm ├── __init__.py ├── fixtures │ └── hurumap_zm.json ├── profiles.py ├── settings.py ├── sql │ ├── agegroup_gender.sql │ ├── chinas_assistance_does_a_good_job_at_meeting_countrys_needs.sql │ ├── chinas_influence_on_economy.sql │ ├── chinas_influence_positive_or_negative.sql │ ├── corruption_business_executives.sql │ ├── corruption_government_officials.sql │ ├── corruption_judges_and_magistrates.sql │ ├── corruption_local_government_councilors.sql │ ├── corruption_members_of_parliament.sql │ ├── corruption_office_of_the_presidency.sql │ ├── corruption_police.sql │ ├── corruption_religious_leaders.sql │ ├── corruption_tax_officials.sql │ ├── corruption_traditional_leaders.sql │ ├── courts_make_binding_decisions.sql │ ├── difficulty_to_obtain_household_services.sql │ ├── difficulty_to_obtain_identity_document.sql │ ├── difficulty_to_obtain_medical_treatment.sql │ ├── difficulty_to_obtain_public_school_services.sql │ ├── education_of_respondent.sql │ ├── elections_enable_voters_to_remove_leaders_from_office.sql │ ├── elections_ensure_voters_views_are_reflected.sql │ ├── employer_of_respondent.sql │ ├── employment_status.sql │ ├── extent_of_democracy.sql │ ├── freeness_and_fairness_of_the_last_national_election.sql │ ├── gender_ruralorurban.sql │ ├── gender_ruralurban.sql │ ├── how_often_use_a_mobile_phone.sql │ ├── how_often_use_the_internet.sql │ ├── last_national_election_attend_a_campaign_meeting.sql │ ├── last_national_election_attend_a_campaign_rally.sql │ ├── last_national_election_work_for_a_candidate_or_party.sql │ ├── level_of_corruption.sql │ ├── main_reason_for_not_reporting_corruption.sql │ ├── most_effective_way_to_combat_corruption.sql │ ├── negative_image_of_china.sql │ ├── occupation_of_respondent.sql │ ├── own_mobile_phone.sql │ ├── own_motor_vehicle.sql │ ├── own_radio.sql │ ├── own_television.sql │ ├── pay_bribe_for_document_or_permit.sql │ ├── pay_bribe_for_household_services.sql │ ├── pay_bribe_for_school_services.sql │ ├── pay_bribe_for_treatment_at_public_clinic_or_hospital.sql │ ├── people_can_fight_corruption.sql │ ├── people_must_obey_the_law.sql │ ├── people_must_pay_taxes.sql │ ├── positive_image_of_china.sql │ ├── satisfaction_with_democracy.sql │ ├── vote_for_which_party.sql │ ├── voting_in_the_most_recent_national_election.sql │ └── wazimap_geography.sql ├── static │ └── img │ │ ├── examples │ │ ├── hover_over_graph.png │ │ ├── map_search.png │ │ ├── section_overview.png │ │ └── text_search.png │ │ └── logo-white.png ├── tables.py └── templates │ ├── homepage.html │ └── profile │ └── profile_detail.html ├── hurumap_zw ├── __init__.py ├── fixtures │ └── hurumap_zw.json ├── profiles │ ├── __init__.py │ └── census.py ├── settings.py ├── sql │ ├── chinas_assistance_meets_country_needs.sql │ ├── chinas_influence_on_economy.sql │ ├── chinas_influence_positive_or_negative.sql │ ├── corruption_business_executives.sql │ ├── corruption_gov_officials.sql │ ├── corruption_judges_and_magistrates.sql │ ├── corruption_local_gov_councilors.sql │ ├── corruption_mps.sql │ ├── corruption_police.sql │ ├── corruption_president_office.sql │ ├── corruption_religious_leaders.sql │ ├── corruption_tax_officials.sql │ ├── corruption_traditional_leaders.sql │ ├── courts_make_binding_decisions.sql │ ├── difficulty_to_obtain_household_services.sql │ ├── difficulty_to_obtain_identity_document.sql │ ├── difficulty_to_obtain_medical_treatment.sql │ ├── difficulty_to_obtain_public_school_services.sql │ ├── education_of_respondent.sql │ ├── election_attend_campaign_meeting.sql │ ├── election_attend_campaign_rally.sql │ ├── election_persuade_others_to_vote_for_a_certain_candidate_or_party.sql │ ├── election_work_for_candidate_or_party.sql │ ├── elections_ensure_voters_views_are_reflected.sql │ ├── elections_to_remove_leaders_from_office.sql │ ├── employer_of_respondent.sql │ ├── employment_status.sql │ ├── extent_of_democracy.sql │ ├── freeness_and_fairness_last_elections.sql │ ├── how_effective_the_news_media_reveals_government_mistakes_and_corruption.sql │ ├── how_often_use_a_mobile_phone.sql │ ├── how_often_use_the_internet.sql │ ├── level_of_corruption.sql │ ├── main_reason_for_not_reporting_corruption.sql │ ├── most_effective_way_to_combat_corruption.sql │ ├── negative_image_of_china.sql │ ├── occupation_of_respondent.sql │ ├── own_mobile_phone.sql │ ├── own_motor_vehicle.sql │ ├── own_radio.sql │ ├── own_television.sql │ ├── pay_bribe_for_document_or_permit.sql │ ├── pay_bribe_for_household_services.sql │ ├── pay_bribe_for_school_services.sql │ ├── pay_bribe_treatment_public_health.sql │ ├── people_can_fight_corruption.sql │ ├── people_must_obey_the_law.sql │ ├── people_must_pay_taxes.sql │ ├── population_by_religion.sql │ ├── population_by_residence.sql │ ├── population_by_sex.sql │ ├── positive_image_of_china.sql │ ├── region.sql │ ├── satisfaction_with_democracy.sql │ ├── vote_for_which_party.sql │ ├── voting_recent_national_election.sql │ └── wazimap_geography.sql ├── static │ ├── css │ │ └── ulwazimap.scss │ └── img │ │ ├── cite-long.png │ │ ├── cite.png │ │ ├── icons │ │ ├── blurbs │ │ │ ├── context.png │ │ │ ├── facts.png │ │ │ └── visualise.png │ │ └── favicon │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── mstile-150x150.png │ │ │ ├── safari-pinned-tab.svg │ │ │ └── site.webmanifest │ │ ├── line-chart.png │ │ ├── logo-white.png │ │ ├── logos │ │ ├── afrobarometer.png │ │ ├── cite-white.png │ │ ├── cite.png │ │ ├── ulwazimap-square.png │ │ ├── ulwazimap-white-square.png │ │ ├── ulwazimap-white.png │ │ └── ulwazimap.png │ │ └── showcase │ │ ├── showcase1.jpg │ │ ├── showcase2.png │ │ └── showcase3.png ├── tables.py └── templates │ ├── _base.html │ ├── _footer.html │ ├── blocks │ └── partners.html │ ├── homepage.html │ └── profile │ └── profile_detail.html ├── manage.py ├── pesayetu ├── __init__.py ├── fixtures │ └── pesayetu.json ├── formats │ ├── __init__.py │ └── en-KE │ │ ├── __init__.py │ │ └── formats.py ├── profiles │ ├── __init__.py │ └── pesayetu.py ├── settings.py ├── sql │ ├── ceilings_on_expenditure.sql │ ├── conditional_funds_2015_2016.sql │ ├── equitable_allocations.sql │ ├── population_sex_2019.sql │ └── wazimap_geography.sql ├── static │ ├── css │ │ ├── custom.css │ │ └── pesayetu.scss │ ├── geo │ │ ├── country.geojson │ │ ├── country.topojson │ │ ├── county.geojson │ │ └── county.topojson │ └── img │ │ ├── logo-hi-res-white.png │ │ ├── logos │ │ ├── cfkenya-logo-white.png │ │ └── cfkenya-logo.png │ │ ├── pesayetu-logo-white.png │ │ └── showcase │ │ ├── crowds.jpg │ │ ├── money.jpg │ │ ├── road.jpeg │ │ ├── savanna.jpg │ │ ├── school.jpg │ │ ├── van.jpeg │ │ └── water.jpeg ├── tables.py └── templates │ ├── _base.html │ ├── _footer.html │ ├── about.html │ ├── homepage.html │ └── profile │ ├── _blocks │ └── _stat_list.html │ └── profile_detail.html ├── runtime.txt └── utils.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/.github/ISSUE_TEMPLATE/other-issues.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHECKS: -------------------------------------------------------------------------------- 1 | WAIT=10 2 | ATTEMPTS=3 3 | 4 | / 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.5.0 2 | -------------------------------------------------------------------------------- /contrib/docker/release-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/contrib/docker/release-build.sh -------------------------------------------------------------------------------- /contrib/docker/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/contrib/docker/release.sh -------------------------------------------------------------------------------- /contrib/loaddata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/contrib/loaddata.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dominion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/README.md -------------------------------------------------------------------------------- /dominion/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dominion/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dominion/data/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/data/utils.py -------------------------------------------------------------------------------- /dominion/fixtures/dominion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/fixtures/dominion.json -------------------------------------------------------------------------------- /dominion/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dominion/profiles/land.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/profiles/land.py -------------------------------------------------------------------------------- /dominion/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/settings.py -------------------------------------------------------------------------------- /dominion/sql/access_to_information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/access_to_information.sql -------------------------------------------------------------------------------- /dominion/sql/excisions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/excisions.sql -------------------------------------------------------------------------------- /dominion/sql/land_acquisation_challenges.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/land_acquisation_challenges.sql -------------------------------------------------------------------------------- /dominion/sql/land_traded_all_vs_colour_2018.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/land_traded_all_vs_colour_2018.sql -------------------------------------------------------------------------------- /dominion/sql/landownership.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/landownership.sql -------------------------------------------------------------------------------- /dominion/sql/landownershipinhectaresbygender.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/landownershipinhectaresbygender.sql -------------------------------------------------------------------------------- /dominion/sql/landownershipinhectaresbyrace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/landownershipinhectaresbyrace.sql -------------------------------------------------------------------------------- /dominion/sql/landuse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/landuse.sql -------------------------------------------------------------------------------- /dominion/sql/landuser.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/landuser.sql -------------------------------------------------------------------------------- /dominion/sql/numberoflandownerspergender.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/numberoflandownerspergender.sql -------------------------------------------------------------------------------- /dominion/sql/numberoflandownersperrace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/numberoflandownersperrace.sql -------------------------------------------------------------------------------- /dominion/sql/party_benefited.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/party_benefited.sql -------------------------------------------------------------------------------- /dominion/sql/population.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/population.sql -------------------------------------------------------------------------------- /dominion/sql/population_group_2016.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/population_group_2016.sql -------------------------------------------------------------------------------- /dominion/sql/population_residence_2009.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/population_residence_2009.sql -------------------------------------------------------------------------------- /dominion/sql/privatelanddistributionbygender.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/privatelanddistributionbygender.sql -------------------------------------------------------------------------------- /dominion/sql/privatelandownershipinhectares.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/privatelandownershipinhectares.sql -------------------------------------------------------------------------------- /dominion/sql/redistributedlandcostinrands.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/redistributedlandcostinrands.sql -------------------------------------------------------------------------------- /dominion/sql/redistributedlandinhectares.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/redistributedlandinhectares.sql -------------------------------------------------------------------------------- /dominion/sql/redistributedlandusebreakdown.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/redistributedlandusebreakdown.sql -------------------------------------------------------------------------------- /dominion/sql/restitutionoutcomestatic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/restitutionoutcomestatic.sql -------------------------------------------------------------------------------- /dominion/sql/workers_hostel_age_group.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/workers_hostel_age_group.sql -------------------------------------------------------------------------------- /dominion/sql/workers_hostel_gender.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/workers_hostel_gender.sql -------------------------------------------------------------------------------- /dominion/sql/workers_hostel_geography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/workers_hostel_geography.sql -------------------------------------------------------------------------------- /dominion/sql/workers_hostel_living_condition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/workers_hostel_living_condition.sql -------------------------------------------------------------------------------- /dominion/sql/workers_hostel_ownership.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/workers_hostel_ownership.sql -------------------------------------------------------------------------------- /dominion/sql/workers_hostel_population.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/workers_hostel_population.sql -------------------------------------------------------------------------------- /dominion/sql/workers_hostel_population_group.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/workers_hostel_population_group.sql -------------------------------------------------------------------------------- /dominion/sql/workers_hostel_rent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/workers_hostel_rent.sql -------------------------------------------------------------------------------- /dominion/sql/workers_hostel_ss_dwelling.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/workers_hostel_ss_dwelling.sql -------------------------------------------------------------------------------- /dominion/sql/workers_hostel_subsidy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/workers_hostel_subsidy.sql -------------------------------------------------------------------------------- /dominion/sql/workers_hostel_toilet_facility.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/workers_hostel_toilet_facility.sql -------------------------------------------------------------------------------- /dominion/sql/workers_hostel_water_source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/sql/workers_hostel_water_source.sql -------------------------------------------------------------------------------- /dominion/static/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/background.png -------------------------------------------------------------------------------- /dominion/static/img/examples/map_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/examples/map_search.png -------------------------------------------------------------------------------- /dominion/static/img/examples/text_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/examples/text_search.png -------------------------------------------------------------------------------- /dominion/static/img/icons/blurbs/analysis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/icons/blurbs/analysis.svg -------------------------------------------------------------------------------- /dominion/static/img/icons/blurbs/checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/icons/blurbs/checklist.svg -------------------------------------------------------------------------------- /dominion/static/img/icons/blurbs/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/icons/blurbs/group.png -------------------------------------------------------------------------------- /dominion/static/img/icons/blurbs/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/icons/blurbs/group.svg -------------------------------------------------------------------------------- /dominion/static/img/icons/blurbs/idea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/icons/blurbs/idea.svg -------------------------------------------------------------------------------- /dominion/static/img/icons/blurbs/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/icons/blurbs/map.svg -------------------------------------------------------------------------------- /dominion/static/img/icons/blurbs/papyrus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/icons/blurbs/papyrus.svg -------------------------------------------------------------------------------- /dominion/static/img/icons/blurbs/script.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/icons/blurbs/script.svg -------------------------------------------------------------------------------- /dominion/static/img/icons/blurbs/story.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/icons/blurbs/story.svg -------------------------------------------------------------------------------- /dominion/static/img/icons/blurbs/team.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/icons/blurbs/team.svg -------------------------------------------------------------------------------- /dominion/static/img/logos/cfafrica-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/cfafrica-green.png -------------------------------------------------------------------------------- /dominion/static/img/logos/citypress-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/citypress-green.png -------------------------------------------------------------------------------- /dominion/static/img/logos/citypress-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/citypress-white.png -------------------------------------------------------------------------------- /dominion/static/img/logos/citypress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/citypress.png -------------------------------------------------------------------------------- /dominion/static/img/logos/landbou-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/landbou-green.png -------------------------------------------------------------------------------- /dominion/static/img/logos/landbou-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/landbou-white.png -------------------------------------------------------------------------------- /dominion/static/img/logos/landbou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/landbou.png -------------------------------------------------------------------------------- /dominion/static/img/logos/ourland-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/ourland-green.png -------------------------------------------------------------------------------- /dominion/static/img/logos/ourland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/ourland.png -------------------------------------------------------------------------------- /dominion/static/img/logos/pulitzer-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/pulitzer-center.png -------------------------------------------------------------------------------- /dominion/static/img/logos/pulitzer-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/pulitzer-center.svg -------------------------------------------------------------------------------- /dominion/static/img/logos/rapport-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/rapport-green.png -------------------------------------------------------------------------------- /dominion/static/img/logos/rapport-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/rapport-white.png -------------------------------------------------------------------------------- /dominion/static/img/logos/rapport.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/logos/rapport.jpg -------------------------------------------------------------------------------- /dominion/static/img/showcase/our_land.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/showcase/our_land.jpg -------------------------------------------------------------------------------- /dominion/static/img/showcase/showcase1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/showcase/showcase1.jpg -------------------------------------------------------------------------------- /dominion/static/img/showcase/showcase2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/showcase/showcase2.jpg -------------------------------------------------------------------------------- /dominion/static/img/showcase/showcase3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/showcase/showcase3.jpg -------------------------------------------------------------------------------- /dominion/static/img/showcase/showcase4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/showcase/showcase4.jpg -------------------------------------------------------------------------------- /dominion/static/img/showcase/showcase5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/showcase/showcase5.jpg -------------------------------------------------------------------------------- /dominion/static/img/showcase/showcase6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/showcase/showcase6.jpg -------------------------------------------------------------------------------- /dominion/static/img/showcase/showcase7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/showcase/showcase7.jpg -------------------------------------------------------------------------------- /dominion/static/img/showcase/showcase8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/showcase/showcase8.jpg -------------------------------------------------------------------------------- /dominion/static/img/showcase/showcase9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/img/showcase/showcase9.jpg -------------------------------------------------------------------------------- /dominion/static/js/map_mapit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/js/map_mapit.js -------------------------------------------------------------------------------- /dominion/static/js/profile_map_mapit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/static/js/profile_map_mapit.js -------------------------------------------------------------------------------- /dominion/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/tables.py -------------------------------------------------------------------------------- /dominion/templates/homepage.html: -------------------------------------------------------------------------------- 1 | {% extends 'homepage.html' %}{% load humanize partition static %} 2 | -------------------------------------------------------------------------------- /dominion/templates/profile/head2head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/templates/profile/head2head.html -------------------------------------------------------------------------------- /dominion/templates/profile/profile_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/templates/profile/profile_detail.html -------------------------------------------------------------------------------- /dominion/templates/settings_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/templates/settings_js.html -------------------------------------------------------------------------------- /dominion/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/urls.py -------------------------------------------------------------------------------- /dominion/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/dominion/views.py -------------------------------------------------------------------------------- /elimu_yangu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elimu_yangu/careerguide/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elimu_yangu/careerguide/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/careerguide/admin.py -------------------------------------------------------------------------------- /elimu_yangu/careerguide/alsubjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/careerguide/alsubjects.json -------------------------------------------------------------------------------- /elimu_yangu/careerguide/career.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/careerguide/career.py -------------------------------------------------------------------------------- /elimu_yangu/careerguide/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/careerguide/forms.py -------------------------------------------------------------------------------- /elimu_yangu/careerguide/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/careerguide/models.py -------------------------------------------------------------------------------- /elimu_yangu/careerguide/olsubjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/careerguide/olsubjects.json -------------------------------------------------------------------------------- /elimu_yangu/careerguide/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/careerguide/urls.py -------------------------------------------------------------------------------- /elimu_yangu/careerguide/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/careerguide/views.py -------------------------------------------------------------------------------- /elimu_yangu/fixtures/elimu_yangu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/fixtures/elimu_yangu.json -------------------------------------------------------------------------------- /elimu_yangu/leaguetable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elimu_yangu/leaguetable/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/leaguetable/tables.py -------------------------------------------------------------------------------- /elimu_yangu/leaguetable/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/leaguetable/urls.py -------------------------------------------------------------------------------- /elimu_yangu/leaguetable/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/leaguetable/views.py -------------------------------------------------------------------------------- /elimu_yangu/locale/sw/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/locale/sw/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /elimu_yangu/locale/sw/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/locale/sw/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /elimu_yangu/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elimu_yangu/profiles/census.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/profiles/census.py -------------------------------------------------------------------------------- /elimu_yangu/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/settings.py -------------------------------------------------------------------------------- /elimu_yangu/sql/alevel_overall_performance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/sql/alevel_overall_performance.sql -------------------------------------------------------------------------------- /elimu_yangu/sql/alevel_student_performance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/sql/alevel_student_performance.sql -------------------------------------------------------------------------------- /elimu_yangu/sql/alevel_subject_performance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/sql/alevel_subject_performance.sql -------------------------------------------------------------------------------- /elimu_yangu/sql/olevel_overall_performance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/sql/olevel_overall_performance.sql -------------------------------------------------------------------------------- /elimu_yangu/sql/olevel_subject_performance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/sql/olevel_subject_performance.sql -------------------------------------------------------------------------------- /elimu_yangu/sql/secondary_school.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/sql/secondary_school.sql -------------------------------------------------------------------------------- /elimu_yangu/sql/university_finder.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/sql/university_finder.sql -------------------------------------------------------------------------------- /elimu_yangu/static/css/arrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/css/arrow.css -------------------------------------------------------------------------------- /elimu_yangu/static/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/css/site.css -------------------------------------------------------------------------------- /elimu_yangu/static/css/step.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/css/step.css -------------------------------------------------------------------------------- /elimu_yangu/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/css/style.css -------------------------------------------------------------------------------- /elimu_yangu/static/img/IPPMedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/IPPMedia.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/arrow-down-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/arrow-down-white.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/arrow-down.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/global.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/global.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/ke-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/ke-mobile.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/ke-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/ke-web.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/ke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/ke.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/tz-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/tz-mobile.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/tz-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/tz-web.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/tz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/tz.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/ug-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/ug-mobile.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/ug-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/ug-web.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/ug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/ug.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/za-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/za-mobile.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/za-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/za-web.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/zm-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/zm-mobile.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/zm-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/zm-web.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/banners/zm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/banners/zm.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/bg.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/census.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/census.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/census_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/census_over.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/cfafrica-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/cfafrica-white.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/chart.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/code4sa-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/code4sa-logo-small.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/development.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/development_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/development_over.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/education.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/education.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/education_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/education_over.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/examples/map_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/examples/map_search.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/examples/text_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/examples/text_search.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/find_facts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/find_facts.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/get_context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/get_context.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/health.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/health_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/health_over.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/hurumap-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/hurumap-logo.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/icfj-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/icfj-logo.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/icons/blurbs/context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/icons/blurbs/context.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/icons/blurbs/facts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/icons/blurbs/facts.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/icons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/icons/browserconfig.xml -------------------------------------------------------------------------------- /elimu_yangu/static/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/icons/favicon.ico -------------------------------------------------------------------------------- /elimu_yangu/static/img/icons/favicon0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/icons/favicon0.ico -------------------------------------------------------------------------------- /elimu_yangu/static/img/icons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/icons/manifest.json -------------------------------------------------------------------------------- /elimu_yangu/static/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/icons/topics/census.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/icons/topics/census.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/icons/topics/health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/icons/topics/health.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/kipato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/kipato.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logo-48x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logo-48x24.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logo-embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logo-embed.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logo-hi-res-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logo-hi-res-white.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logo-hi-res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logo-hi-res.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logo-white.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logo.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logo0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logo0.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logo12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logo12.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logo_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logo_bw.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/bmgf-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/bmgf-white.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/bmgf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/bmgf.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/books.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/cfafrica-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/cfafrica-white.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/cfafrica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/cfafrica.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/cftanzania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/cftanzania.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/datazetu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/datazetu.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/icfj-long-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/icfj-long-white.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/icfj-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/icfj-long.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/icfj-white-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/icfj-white-2.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/icfj-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/icfj-white.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/icfj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/icfj.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/nukta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/nukta.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/open-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/open-book.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/twaweza-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/twaweza-white.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/logos/twaweza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/logos/twaweza.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/map.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/mma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/mma.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/openup-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/openup-logo-small.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/age-sex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/age-sex.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/ancestry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/ancestry.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/citizenship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/citizenship.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/commuting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/commuting.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/disability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/disability.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/education.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/education.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/employment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/employment.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/fertility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/fertility.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/income.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/income.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/industry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/industry.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/language.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/marriage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/marriage.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/migration.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/mortgage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/mortgage.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/occupation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/occupation.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/race.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/race.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/same-sex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/same-sex.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/seniors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/seniors.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/tenure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/tenure.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/va_rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/va_rating.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/questions/veteran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/questions/veteran.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/showcase/IPPMedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/showcase/IPPMedia.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/showcase/crime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/showcase/crime.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/showcase/donkeys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/showcase/donkeys.jpg -------------------------------------------------------------------------------- /elimu_yangu/static/img/showcase/kipato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/showcase/kipato.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/showcase/uwezo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/showcase/uwezo.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/twaweza-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/twaweza-logo.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/tz.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/us.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/uwezo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/uwezo.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/visualise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/visualise.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/wazi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/wazi-logo.png -------------------------------------------------------------------------------- /elimu_yangu/static/img/world_bank_group_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/img/world_bank_group_logo.png -------------------------------------------------------------------------------- /elimu_yangu/static/js/bootstrap/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/js/bootstrap/bootstrap.js -------------------------------------------------------------------------------- /elimu_yangu/static/js/bootstrap/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/js/bootstrap/bootstrap.js.map -------------------------------------------------------------------------------- /elimu_yangu/static/js/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/js/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /elimu_yangu/static/js/jquery.barfiller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/js/jquery.barfiller.js -------------------------------------------------------------------------------- /elimu_yangu/static/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/js/site.js -------------------------------------------------------------------------------- /elimu_yangu/static/js/vendor/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/js/vendor/anchor.min.js -------------------------------------------------------------------------------- /elimu_yangu/static/js/vendor/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/js/vendor/clipboard.min.js -------------------------------------------------------------------------------- /elimu_yangu/static/js/vendor/holder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/js/vendor/holder.min.js -------------------------------------------------------------------------------- /elimu_yangu/static/js/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/js/vendor/jquery.min.js -------------------------------------------------------------------------------- /elimu_yangu/static/js/vendor/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/js/vendor/popper.min.js -------------------------------------------------------------------------------- /elimu_yangu/static/js/widget.geo.select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/js/widget.geo.select.js -------------------------------------------------------------------------------- /elimu_yangu/static/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /elimu_yangu/static/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /elimu_yangu/static/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /elimu_yangu/static/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/lib/jquery/.bower.json -------------------------------------------------------------------------------- /elimu_yangu/static/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /elimu_yangu/static/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /elimu_yangu/static/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/static/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /elimu_yangu/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/tables.py -------------------------------------------------------------------------------- /elimu_yangu/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/templates/about.html -------------------------------------------------------------------------------- /elimu_yangu/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/templates/footer.html -------------------------------------------------------------------------------- /elimu_yangu/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/templates/homepage.html -------------------------------------------------------------------------------- /elimu_yangu/templates/homepage_country.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/templates/homepage_country.html -------------------------------------------------------------------------------- /elimu_yangu/universityfinder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elimu_yangu/universityfinder/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/universityfinder/admin.py -------------------------------------------------------------------------------- /elimu_yangu/universityfinder/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/universityfinder/apps.py -------------------------------------------------------------------------------- /elimu_yangu/universityfinder/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/universityfinder/forms.py -------------------------------------------------------------------------------- /elimu_yangu/universityfinder/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elimu_yangu/universityfinder/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/universityfinder/models.py -------------------------------------------------------------------------------- /elimu_yangu/universityfinder/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/universityfinder/tests.py -------------------------------------------------------------------------------- /elimu_yangu/universityfinder/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/universityfinder/urls.py -------------------------------------------------------------------------------- /elimu_yangu/universityfinder/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/universityfinder/views.py -------------------------------------------------------------------------------- /elimu_yangu/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/urls.py -------------------------------------------------------------------------------- /elimu_yangu/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/elimu_yangu/views.py -------------------------------------------------------------------------------- /hurumap_global/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_global/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_global/settings.py -------------------------------------------------------------------------------- /hurumap_global/sql/wazimap_geography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_global/sql/wazimap_geography.sql -------------------------------------------------------------------------------- /hurumap_global/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_global/templates/homepage.html -------------------------------------------------------------------------------- /hurumap_ke/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_ke/fixtures/hurumap_ke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/fixtures/hurumap_ke.json -------------------------------------------------------------------------------- /hurumap_ke/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_ke/profiles/census.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/profiles/census.py -------------------------------------------------------------------------------- /hurumap_ke/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/settings.py -------------------------------------------------------------------------------- /hurumap_ke/sql/agegroup_gender.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/agegroup_gender.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/avg_household_size.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/avg_household_size.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/chinas_influence_on_economy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/chinas_influence_on_economy.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/contraceptive_method.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/contraceptive_method.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/contraceptive_modern_method.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/contraceptive_modern_method.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/contraceptive_use.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/contraceptive_use.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/corruption_gov_officials.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/corruption_gov_officials.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/corruption_mps.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/corruption_mps.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/corruption_police.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/corruption_police.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/corruption_president_office.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/corruption_president_office.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/corruption_religious_leaders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/corruption_religious_leaders.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/corruption_tax_officials.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/corruption_tax_officials.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/courts_make_binding_decisions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/courts_make_binding_decisions.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/crimereport.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/crimereport.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/crop_production.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/crop_production.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/education_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/education_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/employer_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/employer_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/employment_status.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/employment_status.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/employmentactivitystatus_sex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/employmentactivitystatus_sex.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/extent_of_democracy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/extent_of_democracy.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/fertility.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/fertility.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/gender_ruralorurban.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/gender_ruralorurban.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/health_facilities_type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/health_facilities_type.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/healthratios.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/healthratios.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/heightforage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/heightforage.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/highesteducationlevelreached.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/highesteducationlevelreached.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/household_heads.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/household_heads.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/household_itn_use_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/household_itn_use_users.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/householdpossessionofitn.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/householdpossessionofitn.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/households_and_population.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/households_and_population.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/how_often_use_a_mobile_phone.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/how_often_use_a_mobile_phone.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/how_often_use_the_internet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/how_often_use_the_internet.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/level_of_corruption.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/level_of_corruption.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/livestock_population.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/livestock_population.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/livestock_products.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/livestock_products.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/mainmodeofhumanwastedisposal.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/mainmodeofhumanwastedisposal.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/mainsourceofwater.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/mainsourceofwater.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/maintypeoffloormaterial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/maintypeoffloormaterial.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/maintypeoflightingfuel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/maintypeoflightingfuel.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/maintypeofroofingmaterial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/maintypeofroofingmaterial.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/maintypeofwallmaterial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/maintypeofwallmaterial.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/maternalcareindicators.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/maternalcareindicators.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/negative_image_of_china.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/negative_image_of_china.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/occupation_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/occupation_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/own_mobile_phone.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/own_mobile_phone.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/own_motor_vehicle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/own_motor_vehicle.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/own_radio.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/own_radio.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/own_television.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/own_television.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/pay_bribe_for_school_services.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/pay_bribe_for_school_services.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/people_can_fight_corruption.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/people_can_fight_corruption.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/people_must_obey_the_law.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/people_must_obey_the_law.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/people_must_pay_taxes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/people_must_pay_taxes.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/population_sex_2019.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/population_sex_2019.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/positive_image_of_china.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/positive_image_of_china.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/protests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/protests.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/religion.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/religion.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/satisfaction_with_democracy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/satisfaction_with_democracy.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/schoolattendance_sex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/schoolattendance_sex.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/schoolfires.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/schoolfires.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/subcounty_population_sex_2019.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/subcounty_population_sex_2019.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/treatment_type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/treatment_type.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/treatmentofchildrenwithfever.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/treatmentofchildrenwithfever.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/typesofcrime.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/typesofcrime.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/useofipt.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/useofipt.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/vaccinations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/vaccinations.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/vote_for_which_party.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/vote_for_which_party.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/voterregistration_2015.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/voterregistration_2015.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/voterregistration_2017.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/voterregistration_2017.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/wazimap_geography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/wazimap_geography.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/weightforage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/weightforage.sql -------------------------------------------------------------------------------- /hurumap_ke/sql/weightforheight.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/sql/weightforheight.sql -------------------------------------------------------------------------------- /hurumap_ke/static/img/logo-hi-res-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/static/img/logo-hi-res-white.png -------------------------------------------------------------------------------- /hurumap_ke/static/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/static/img/logo-white.png -------------------------------------------------------------------------------- /hurumap_ke/static/img/logos/cfkenya-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/static/img/logos/cfkenya-logo.png -------------------------------------------------------------------------------- /hurumap_ke/static/img/showcase/crowds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/static/img/showcase/crowds.jpg -------------------------------------------------------------------------------- /hurumap_ke/static/img/showcase/money.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/static/img/showcase/money.jpg -------------------------------------------------------------------------------- /hurumap_ke/static/img/showcase/road.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/static/img/showcase/road.jpeg -------------------------------------------------------------------------------- /hurumap_ke/static/img/showcase/savanna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/static/img/showcase/savanna.jpg -------------------------------------------------------------------------------- /hurumap_ke/static/img/showcase/school.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/static/img/showcase/school.jpg -------------------------------------------------------------------------------- /hurumap_ke/static/img/showcase/van.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/static/img/showcase/van.jpeg -------------------------------------------------------------------------------- /hurumap_ke/static/img/showcase/water.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/static/img/showcase/water.jpeg -------------------------------------------------------------------------------- /hurumap_ke/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/tables.py -------------------------------------------------------------------------------- /hurumap_ke/templates/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/templates/_footer.html -------------------------------------------------------------------------------- /hurumap_ke/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/templates/homepage.html -------------------------------------------------------------------------------- /hurumap_ke/templates/profile/profile_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ke/templates/profile/profile_detail.html -------------------------------------------------------------------------------- /hurumap_land/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hurumap_land/fixtures/hurumap_land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/fixtures/hurumap_land.json -------------------------------------------------------------------------------- /hurumap_land/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/geo.py -------------------------------------------------------------------------------- /hurumap_land/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_land/profiles/land.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/profiles/land.py -------------------------------------------------------------------------------- /hurumap_land/script/agrids_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/script/agrids_distribution.py -------------------------------------------------------------------------------- /hurumap_land/script/agrids_district_Statistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/script/agrids_district_Statistic.py -------------------------------------------------------------------------------- /hurumap_land/script/agrids_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/script/agrids_summary.py -------------------------------------------------------------------------------- /hurumap_land/script/towndistrictcodemapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/script/towndistrictcodemapping.json -------------------------------------------------------------------------------- /hurumap_land/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/settings.py -------------------------------------------------------------------------------- /hurumap_land/sql/access_to_information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/access_to_information.sql -------------------------------------------------------------------------------- /hurumap_land/sql/land_acquisation_challenges.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/land_acquisation_challenges.sql -------------------------------------------------------------------------------- /hurumap_land/sql/landownership.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/landownership.sql -------------------------------------------------------------------------------- /hurumap_land/sql/landsalessummarycosttcolour.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/landsalessummarycosttcolour.sql -------------------------------------------------------------------------------- /hurumap_land/sql/landuse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/landuse.sql -------------------------------------------------------------------------------- /hurumap_land/sql/landuser.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/landuser.sql -------------------------------------------------------------------------------- /hurumap_land/sql/numberoflandownerspergender.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/numberoflandownerspergender.sql -------------------------------------------------------------------------------- /hurumap_land/sql/numberoflandownersperrace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/numberoflandownersperrace.sql -------------------------------------------------------------------------------- /hurumap_land/sql/party_benefited.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/party_benefited.sql -------------------------------------------------------------------------------- /hurumap_land/sql/population.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/population.sql -------------------------------------------------------------------------------- /hurumap_land/sql/populationgroup_2016.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/populationgroup_2016.sql -------------------------------------------------------------------------------- /hurumap_land/sql/redistributedlandinhectares.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/redistributedlandinhectares.sql -------------------------------------------------------------------------------- /hurumap_land/sql/restitutionoutcomestatic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/restitutionoutcomestatic.sql -------------------------------------------------------------------------------- /hurumap_land/sql/workers_hostel_age_group.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/workers_hostel_age_group.sql -------------------------------------------------------------------------------- /hurumap_land/sql/workers_hostel_gender.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/workers_hostel_gender.sql -------------------------------------------------------------------------------- /hurumap_land/sql/workers_hostel_geography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/workers_hostel_geography.sql -------------------------------------------------------------------------------- /hurumap_land/sql/workers_hostel_ownership.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/workers_hostel_ownership.sql -------------------------------------------------------------------------------- /hurumap_land/sql/workers_hostel_population.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/workers_hostel_population.sql -------------------------------------------------------------------------------- /hurumap_land/sql/workers_hostel_rent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/workers_hostel_rent.sql -------------------------------------------------------------------------------- /hurumap_land/sql/workers_hostel_ss_dwelling.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/workers_hostel_ss_dwelling.sql -------------------------------------------------------------------------------- /hurumap_land/sql/workers_hostel_subsidy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/workers_hostel_subsidy.sql -------------------------------------------------------------------------------- /hurumap_land/sql/workers_hostel_water_source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/sql/workers_hostel_water_source.sql -------------------------------------------------------------------------------- /hurumap_land/static/css/hurumap_land.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/css/hurumap_land.scss -------------------------------------------------------------------------------- /hurumap_land/static/img/examples/map_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/examples/map_search.png -------------------------------------------------------------------------------- /hurumap_land/static/img/examples/text_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/examples/text_search.png -------------------------------------------------------------------------------- /hurumap_land/static/img/icons/blurbs/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/icons/blurbs/group.png -------------------------------------------------------------------------------- /hurumap_land/static/img/icons/blurbs/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/icons/blurbs/group.svg -------------------------------------------------------------------------------- /hurumap_land/static/img/icons/blurbs/idea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/icons/blurbs/idea.svg -------------------------------------------------------------------------------- /hurumap_land/static/img/icons/blurbs/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/icons/blurbs/map.svg -------------------------------------------------------------------------------- /hurumap_land/static/img/icons/blurbs/papyrus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/icons/blurbs/papyrus.svg -------------------------------------------------------------------------------- /hurumap_land/static/img/icons/blurbs/script.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/icons/blurbs/script.svg -------------------------------------------------------------------------------- /hurumap_land/static/img/icons/blurbs/story.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/icons/blurbs/story.svg -------------------------------------------------------------------------------- /hurumap_land/static/img/icons/blurbs/team.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/icons/blurbs/team.svg -------------------------------------------------------------------------------- /hurumap_land/static/img/logos/cfafrica-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/logos/cfafrica-green.png -------------------------------------------------------------------------------- /hurumap_land/static/img/logos/citypress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/logos/citypress.png -------------------------------------------------------------------------------- /hurumap_land/static/img/logos/landbou-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/logos/landbou-green.png -------------------------------------------------------------------------------- /hurumap_land/static/img/logos/landbou-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/logos/landbou-white.png -------------------------------------------------------------------------------- /hurumap_land/static/img/logos/landbou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/logos/landbou.png -------------------------------------------------------------------------------- /hurumap_land/static/img/logos/ourland-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/logos/ourland-green.png -------------------------------------------------------------------------------- /hurumap_land/static/img/logos/ourland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/logos/ourland.png -------------------------------------------------------------------------------- /hurumap_land/static/img/logos/rapport-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/logos/rapport-green.png -------------------------------------------------------------------------------- /hurumap_land/static/img/logos/rapport-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/logos/rapport-white.png -------------------------------------------------------------------------------- /hurumap_land/static/img/logos/rapport.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/logos/rapport.jpg -------------------------------------------------------------------------------- /hurumap_land/static/img/showcase/our_land.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/showcase/our_land.jpg -------------------------------------------------------------------------------- /hurumap_land/static/img/showcase/showcase_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/showcase/showcase_1.jpg -------------------------------------------------------------------------------- /hurumap_land/static/img/showcase/showcase_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/showcase/showcase_2.jpg -------------------------------------------------------------------------------- /hurumap_land/static/img/showcase/showcase_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/img/showcase/showcase_3.jpg -------------------------------------------------------------------------------- /hurumap_land/static/js/maps_mapit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/js/maps_mapit.js -------------------------------------------------------------------------------- /hurumap_land/static/js/profile_map_mapit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/js/profile_map_mapit.js -------------------------------------------------------------------------------- /hurumap_land/static/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/static/logo-white.png -------------------------------------------------------------------------------- /hurumap_land/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/tables.py -------------------------------------------------------------------------------- /hurumap_land/templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/templates/_base.html -------------------------------------------------------------------------------- /hurumap_land/templates/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/templates/_footer.html -------------------------------------------------------------------------------- /hurumap_land/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/templates/about.html -------------------------------------------------------------------------------- /hurumap_land/templates/blocks/partners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/templates/blocks/partners.html -------------------------------------------------------------------------------- /hurumap_land/templates/blocks/showcase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/templates/blocks/showcase.html -------------------------------------------------------------------------------- /hurumap_land/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/templates/homepage.html -------------------------------------------------------------------------------- /hurumap_land/templates/settings_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/templates/settings_js.html -------------------------------------------------------------------------------- /hurumap_land/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_land/templatetags/hashtospace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/templatetags/hashtospace.py -------------------------------------------------------------------------------- /hurumap_land/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_land/urls.py -------------------------------------------------------------------------------- /hurumap_ng/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hurumap_ng/fixtures/hurumap_ng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/fixtures/hurumap_ng.json -------------------------------------------------------------------------------- /hurumap_ng/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/profiles.py -------------------------------------------------------------------------------- /hurumap_ng/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/settings.py -------------------------------------------------------------------------------- /hurumap_ng/sql/access_to_bank.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/access_to_bank.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/access_to_wash.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/access_to_wash.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/adolescent_fertility.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/adolescent_fertility.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/air_transportation_domestic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/air_transportation_domestic.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/arrested_suspects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/arrested_suspects.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/automative_gas_oil_volumes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/automative_gas_oil_volumes.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/avg_number_bribes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/avg_number_bribes.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/awareness_of_smedan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/awareness_of_smedan.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/bank_credit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/bank_credit.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/bank_deposit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/bank_deposit.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/benefit_from_smedan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/benefit_from_smedan.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/birth_registration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/birth_registration.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/bribery_prevalence.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/bribery_prevalence.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/business_reg_with_cac.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/business_reg_with_cac.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/case_of_corruption.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/case_of_corruption.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/compiled_hd_indeces.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/compiled_hd_indeces.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/consumer_price_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/consumer_price_index.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/contraceptive_use.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/contraceptive_use.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/conviction_secured.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/conviction_secured.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/counselling_concluded.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/counselling_concluded.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/crime_summary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/crime_summary.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/diesel_price.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/diesel_price.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/diseal_yearly.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/diseal_yearly.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/domestic_flights.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/domestic_flights.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/driver_licences_processed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/driver_licences_processed.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/driver_licences_processed_age.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/driver_licences_processed_age.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/drug_arrests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/drug_arrests.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/drug_convictions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/drug_convictions.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/drug_counselling.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/drug_counselling.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/drug_use.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/drug_use.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/drugs_seized.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/drugs_seized.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/employment_in_civil_services.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/employment_in_civil_services.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/enterprise_registered.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/enterprise_registered.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/external_domestic_debt.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/external_domestic_debt.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/faac.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/faac.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/faac_yearly.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/faac_yearly.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/fertility_rate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/fertility_rate.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/generated_revenue.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/generated_revenue.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/governor_deputy_governor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/governor_deputy_governor.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/groundnut_production.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/groundnut_production.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/hdi_education.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/hdi_education.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/hiv_arvs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/hiv_arvs.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/hiv_patient.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/hiv_patient.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/household_kerosene_volumes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/household_kerosene_volumes.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/immunization_coverage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/immunization_coverage.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/international_flights.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/international_flights.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/jamb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/jamb.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/kerosene_price_gallon.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/kerosene_price_gallon.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/kerosene_price_litre.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/kerosene_price_litre.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/labour_force.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/labour_force.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/literacy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/literacy.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/local_govt_gender_dist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/local_govt_gender_dist.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/lpg_price_10kg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/lpg_price_10kg.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/lpg_price_5kg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/lpg_price_5kg.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/maize_production.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/maize_production.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/marriage_distribution.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/marriage_distribution.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/maternal_mortality.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/maternal_mortality.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/micro_enterprises.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/micro_enterprises.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/mineral_production.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/mineral_production.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/mobile_subscription.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/mobile_subscription.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/mobile_subscription_q1_2019.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/mobile_subscription_q1_2019.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/mobile_subscription_q2_2019.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/mobile_subscription_q2_2019.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/nominal_gdp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/nominal_gdp.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/number_of_dentists.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/number_of_dentists.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/number_of_doctors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/number_of_doctors.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/number_of_officials.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/number_of_officials.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/number_of_plates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/number_of_plates.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/offences_against_authority.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/offences_against_authority.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/offences_against_person.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/offences_against_person.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/offences_against_property.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/offences_against_property.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/officer_house_assembly.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/officer_house_assembly.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/passport_application.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/passport_application.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/passport_issued.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/passport_issued.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/passport_re_issued.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/passport_re_issued.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/petrol_price.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/petrol_price.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/petroleum_gas_distribution.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/petroleum_gas_distribution.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/petroleum_motor_spirit_price.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/petroleum_motor_spirit_price.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/population_projection.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/population_projection.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/population_sex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/population_sex.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/postal_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/postal_data.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/postal_data_services.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/postal_data_services.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/premium_motor_spirit_volumes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/premium_motor_spirit_volumes.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/prepaid_metres.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/prepaid_metres.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/primary_school_enrollment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/primary_school_enrollment.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/prison_capacity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/prison_capacity.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/prison_population.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/prison_population.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/reported_bribery.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/reported_bribery.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/road_traffic_accidents.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/road_traffic_accidents.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/suspects_prosecuted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/suspects_prosecuted.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/technical_school.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/technical_school.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/telecom_subscription.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/telecom_subscription.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/total_employment_2017.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/total_employment_2017.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/transport_air_fare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/transport_air_fare.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/transport_bus_intercity_fare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/transport_bus_intercity_fare.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/transport_bus_within_cityfare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/transport_bus_within_cityfare.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/transport_motorcycle_fare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/transport_motorcycle_fare.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/transport_water_fare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/transport_water_fare.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/travel_certificates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/travel_certificates.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/uder_employment_rate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/uder_employment_rate.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/underweight_children.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/underweight_children.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/unemployment_rate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/unemployment_rate.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/vaccine_coverage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/vaccine_coverage.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/wazimap_geography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/wazimap_geography.sql -------------------------------------------------------------------------------- /hurumap_ng/sql/youth_services_corp_dev.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/sql/youth_services_corp_dev.sql -------------------------------------------------------------------------------- /hurumap_ng/static/css/ng.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/static/css/ng.scss -------------------------------------------------------------------------------- /hurumap_ng/static/img/examples/map_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/static/img/examples/map_search.png -------------------------------------------------------------------------------- /hurumap_ng/static/img/examples/text_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/static/img/examples/text_search.png -------------------------------------------------------------------------------- /hurumap_ng/static/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/static/img/logo-white.png -------------------------------------------------------------------------------- /hurumap_ng/static/img/logo-white_insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/static/img/logo-white_insights.png -------------------------------------------------------------------------------- /hurumap_ng/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/static/img/logo.png -------------------------------------------------------------------------------- /hurumap_ng/static/img/logos/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/static/img/logos/brown.png -------------------------------------------------------------------------------- /hurumap_ng/static/img/logos/nan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/static/img/logos/nan.png -------------------------------------------------------------------------------- /hurumap_ng/static/img/logos/nbs-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/static/img/logos/nbs-white.png -------------------------------------------------------------------------------- /hurumap_ng/static/img/logos/nbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/static/img/logos/nbs.png -------------------------------------------------------------------------------- /hurumap_ng/static/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/static/js/charts.js -------------------------------------------------------------------------------- /hurumap_ng/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/tables.py -------------------------------------------------------------------------------- /hurumap_ng/templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/templates/_base.html -------------------------------------------------------------------------------- /hurumap_ng/templates/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/templates/_footer.html -------------------------------------------------------------------------------- /hurumap_ng/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/templates/about.html -------------------------------------------------------------------------------- /hurumap_ng/templates/blocks/partners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/templates/blocks/partners.html -------------------------------------------------------------------------------- /hurumap_ng/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/templates/homepage.html -------------------------------------------------------------------------------- /hurumap_ng/templates/insights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/templates/insights.html -------------------------------------------------------------------------------- /hurumap_ng/templates/profile/profile_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/templates/profile/profile_detail.html -------------------------------------------------------------------------------- /hurumap_ng/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/urls.py -------------------------------------------------------------------------------- /hurumap_ng/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ng/views.py -------------------------------------------------------------------------------- /hurumap_tz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_tz/fixtures/hurumap_tz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/fixtures/hurumap_tz.json -------------------------------------------------------------------------------- /hurumap_tz/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_tz/profiles/census.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/profiles/census.py -------------------------------------------------------------------------------- /hurumap_tz/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/settings.py -------------------------------------------------------------------------------- /hurumap_tz/sql/airporttypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/airporttypes.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/causesofdeathoverfive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/causesofdeathoverfive.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/causesofdeathunderfive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/causesofdeathunderfive.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/chinas_influence_on_economy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/chinas_influence_on_economy.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/corruption_gov_officials.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/corruption_gov_officials.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/corruption_mps.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/corruption_mps.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/corruption_police.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/corruption_police.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/corruption_president_office.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/corruption_president_office.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/corruption_religious_leaders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/corruption_religious_leaders.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/corruption_tax_officials.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/corruption_tax_officials.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/courts_make_binding_decisions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/courts_make_binding_decisions.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/education_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/education_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/employer_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/employer_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/employment_status.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/employment_status.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/employmentactivitystatus_sex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/employmentactivitystatus_sex.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/extent_of_democracy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/extent_of_democracy.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/familyplanningclients.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/familyplanningclients.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/healthcenterownership.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/healthcenterownership.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/healthcenters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/healthcenters.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/healthworkers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/healthworkers.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/highesteducationlevelreached.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/highesteducationlevelreached.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/hivcenters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/hivcenters.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/how_often_use_a_mobile_phone.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/how_often_use_a_mobile_phone.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/how_often_use_the_internet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/how_often_use_the_internet.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/inpatientdiagnosisoverfive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/inpatientdiagnosisoverfive.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/inpatientdiagnosisunderfive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/inpatientdiagnosisunderfive.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/level_of_corruption.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/level_of_corruption.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/literacytest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/literacytest.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/negative_image_of_china.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/negative_image_of_china.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/occupation_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/occupation_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/outpatientdiagnosisoverfive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/outpatientdiagnosisoverfive.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/outpatientdiagnosisunderfive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/outpatientdiagnosisunderfive.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/own_mobile_phone.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/own_mobile_phone.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/own_motor_vehicle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/own_motor_vehicle.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/own_radio.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/own_radio.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/own_television.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/own_television.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/pay_bribe_for_school_services.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/pay_bribe_for_school_services.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/people_can_fight_corruption.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/people_can_fight_corruption.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/people_must_obey_the_law.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/people_must_obey_the_law.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/people_must_pay_taxes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/people_must_pay_taxes.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/pepfar.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/pepfar.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/placeofdelivery.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/placeofdelivery.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/population_by_religion.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_tz/sql/population_by_residence.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_tz/sql/population_by_sex.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_tz/sql/positive_image_of_china.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/positive_image_of_china.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/primaryschoolteachers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/primaryschoolteachers.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/region.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_tz/sql/ruralorurban_sex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/ruralorurban_sex.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/satisfaction_with_democracy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/satisfaction_with_democracy.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/schoolattendance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/schoolattendance.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/schoolattendance_sex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/schoolattendance_sex.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/tetanusvaccine.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/tetanusvaccine.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/trafficandcrimes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/trafficandcrimes.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/vote_for_which_party.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/vote_for_which_party.sql -------------------------------------------------------------------------------- /hurumap_tz/sql/watersources.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/sql/watersources.sql -------------------------------------------------------------------------------- /hurumap_tz/static/img/logo-hi-res-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/static/img/logo-hi-res-white.png -------------------------------------------------------------------------------- /hurumap_tz/static/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/static/img/logo-white.png -------------------------------------------------------------------------------- /hurumap_tz/static/img/logos/bmgf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/static/img/logos/bmgf.png -------------------------------------------------------------------------------- /hurumap_tz/static/img/logos/cf-tanzania-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/static/img/logos/cf-tanzania-logo.png -------------------------------------------------------------------------------- /hurumap_tz/static/img/logos/cftanzania-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/static/img/logos/cftanzania-logo.png -------------------------------------------------------------------------------- /hurumap_tz/static/img/logos/datazetu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/static/img/logos/datazetu.png -------------------------------------------------------------------------------- /hurumap_tz/static/img/logos/icfj-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/static/img/logos/icfj-logo.png -------------------------------------------------------------------------------- /hurumap_tz/static/img/logos/pepfar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/static/img/logos/pepfar.png -------------------------------------------------------------------------------- /hurumap_tz/static/img/logos/twaweza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/static/img/logos/twaweza.png -------------------------------------------------------------------------------- /hurumap_tz/static/img/logos/world-bank-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/static/img/logos/world-bank-group.png -------------------------------------------------------------------------------- /hurumap_tz/static/img/showcase/cti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/static/img/showcase/cti.jpg -------------------------------------------------------------------------------- /hurumap_tz/static/img/showcase/kipato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/static/img/showcase/kipato.jpg -------------------------------------------------------------------------------- /hurumap_tz/static/img/showcase/uwezo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/static/img/showcase/uwezo.jpg -------------------------------------------------------------------------------- /hurumap_tz/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/tables.py -------------------------------------------------------------------------------- /hurumap_tz/templates/blocks/partners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/templates/blocks/partners.html -------------------------------------------------------------------------------- /hurumap_tz/templates/blocks/showcase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/templates/blocks/showcase.html -------------------------------------------------------------------------------- /hurumap_tz/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/templates/homepage.html -------------------------------------------------------------------------------- /hurumap_tz/templates/profile/profile_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_tz/templates/profile/profile_detail.html -------------------------------------------------------------------------------- /hurumap_ug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_ug/fixtures/hurumap_ug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/fixtures/hurumap_ug.json -------------------------------------------------------------------------------- /hurumap_ug/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_ug/profiles/census.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/profiles/census.py -------------------------------------------------------------------------------- /hurumap_ug/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/settings.py -------------------------------------------------------------------------------- /hurumap_ug/sql/chinas_influence_on_economy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/chinas_influence_on_economy.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/corruption_police.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/corruption_police.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/corruption_religious_leaders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/corruption_religious_leaders.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/corruption_tax_officials.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/corruption_tax_officials.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/courts_make_binding_decisions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/courts_make_binding_decisions.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/disability.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/disability.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/disabledornot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/disabledornot.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/education_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/education_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/employer_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/employer_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/employment_status.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/employment_status.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/extent_of_democracy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/extent_of_democracy.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/household.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/household.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/how_effective_the_news_media_reveals_government_mistakes_and_corruption.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_ug/sql/how_often_use_a_mobile_phone.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/how_often_use_a_mobile_phone.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/how_often_use_the_internet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/how_often_use_the_internet.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/last_national_election_persuade_others_to_vote_for_a_certain_candidate_or_party.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_ug/sql/level_of_corruption.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/level_of_corruption.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/negative_image_of_china.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/negative_image_of_china.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/occupation_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/occupation_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/own_mobile_phone.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/own_mobile_phone.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/own_motor_vehicle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/own_motor_vehicle.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/own_radio.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/own_radio.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/own_television.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/own_television.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/pay_bribe_for_school_services.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/pay_bribe_for_school_services.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/people_can_fight_corruption.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/people_can_fight_corruption.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/people_must_obey_the_law.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/people_must_obey_the_law.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/people_must_pay_taxes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/people_must_pay_taxes.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/positive_image_of_china.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/positive_image_of_china.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/presidentialcandidate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/presidentialcandidate.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/ruralorurban.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/ruralorurban.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/satisfaction_with_democracy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/satisfaction_with_democracy.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/sex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/sex.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/vote_for_which_party.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/vote_for_which_party.sql -------------------------------------------------------------------------------- /hurumap_ug/sql/wazimap_geography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/sql/wazimap_geography.sql -------------------------------------------------------------------------------- /hurumap_ug/static/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/static/img/logo-white.png -------------------------------------------------------------------------------- /hurumap_ug/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/tables.py -------------------------------------------------------------------------------- /hurumap_ug/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/templates/homepage.html -------------------------------------------------------------------------------- /hurumap_ug/templates/profile/profile_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_ug/templates/profile/profile_detail.html -------------------------------------------------------------------------------- /hurumap_zm/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hurumap_zm/fixtures/hurumap_zm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/fixtures/hurumap_zm.json -------------------------------------------------------------------------------- /hurumap_zm/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/profiles.py -------------------------------------------------------------------------------- /hurumap_zm/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/settings.py -------------------------------------------------------------------------------- /hurumap_zm/sql/agegroup_gender.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/agegroup_gender.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/chinas_influence_on_economy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/chinas_influence_on_economy.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/corruption_police.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/corruption_police.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/corruption_tax_officials.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/corruption_tax_officials.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/education_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/education_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/employer_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/employer_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/employment_status.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/employment_status.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/extent_of_democracy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/extent_of_democracy.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/gender_ruralorurban.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/gender_ruralorurban.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/gender_ruralurban.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_zm/sql/how_often_use_the_internet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/how_often_use_the_internet.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/level_of_corruption.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/level_of_corruption.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/negative_image_of_china.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/negative_image_of_china.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/occupation_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/occupation_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/own_mobile_phone.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/own_mobile_phone.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/own_motor_vehicle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/own_motor_vehicle.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/own_radio.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/own_radio.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/own_television.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/own_television.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/people_must_obey_the_law.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/people_must_obey_the_law.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/people_must_pay_taxes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/people_must_pay_taxes.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/positive_image_of_china.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/positive_image_of_china.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/vote_for_which_party.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/vote_for_which_party.sql -------------------------------------------------------------------------------- /hurumap_zm/sql/wazimap_geography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/sql/wazimap_geography.sql -------------------------------------------------------------------------------- /hurumap_zm/static/img/examples/map_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/static/img/examples/map_search.png -------------------------------------------------------------------------------- /hurumap_zm/static/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/static/img/logo-white.png -------------------------------------------------------------------------------- /hurumap_zm/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/tables.py -------------------------------------------------------------------------------- /hurumap_zm/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zm/templates/homepage.html -------------------------------------------------------------------------------- /hurumap_zw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_zw/fixtures/hurumap_zw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/fixtures/hurumap_zw.json -------------------------------------------------------------------------------- /hurumap_zw/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_zw/profiles/census.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/profiles/census.py -------------------------------------------------------------------------------- /hurumap_zw/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/settings.py -------------------------------------------------------------------------------- /hurumap_zw/sql/corruption_gov_officials.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/corruption_gov_officials.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/corruption_mps.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/corruption_mps.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/corruption_police.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/corruption_police.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/corruption_tax_officials.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/corruption_tax_officials.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/education_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/education_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/election_persuade_others_to_vote_for_a_certain_candidate_or_party.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_zw/sql/employer_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/employer_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/employment_status.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/employment_status.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/extent_of_democracy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/extent_of_democracy.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/how_effective_the_news_media_reveals_government_mistakes_and_corruption.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_zw/sql/how_often_use_the_internet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/how_often_use_the_internet.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/level_of_corruption.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/level_of_corruption.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/negative_image_of_china.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/negative_image_of_china.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/occupation_of_respondent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/occupation_of_respondent.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/own_mobile_phone.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/own_mobile_phone.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/own_motor_vehicle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/own_motor_vehicle.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/own_radio.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/own_radio.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/own_television.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/own_television.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/people_must_obey_the_law.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/people_must_obey_the_law.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/people_must_pay_taxes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/people_must_pay_taxes.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/population_by_religion.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/population_by_religion.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/population_by_residence.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/population_by_residence.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/population_by_sex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/population_by_sex.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/positive_image_of_china.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/positive_image_of_china.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/region.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hurumap_zw/sql/vote_for_which_party.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/vote_for_which_party.sql -------------------------------------------------------------------------------- /hurumap_zw/sql/wazimap_geography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/sql/wazimap_geography.sql -------------------------------------------------------------------------------- /hurumap_zw/static/css/ulwazimap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/static/css/ulwazimap.scss -------------------------------------------------------------------------------- /hurumap_zw/static/img/cite-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/static/img/cite-long.png -------------------------------------------------------------------------------- /hurumap_zw/static/img/cite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/static/img/cite.png -------------------------------------------------------------------------------- /hurumap_zw/static/img/icons/blurbs/facts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/static/img/icons/blurbs/facts.png -------------------------------------------------------------------------------- /hurumap_zw/static/img/line-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/static/img/line-chart.png -------------------------------------------------------------------------------- /hurumap_zw/static/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/static/img/logo-white.png -------------------------------------------------------------------------------- /hurumap_zw/static/img/logos/afrobarometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/static/img/logos/afrobarometer.png -------------------------------------------------------------------------------- /hurumap_zw/static/img/logos/cite-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/static/img/logos/cite-white.png -------------------------------------------------------------------------------- /hurumap_zw/static/img/logos/cite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/static/img/logos/cite.png -------------------------------------------------------------------------------- /hurumap_zw/static/img/logos/ulwazimap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/static/img/logos/ulwazimap.png -------------------------------------------------------------------------------- /hurumap_zw/static/img/showcase/showcase1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/static/img/showcase/showcase1.jpg -------------------------------------------------------------------------------- /hurumap_zw/static/img/showcase/showcase2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/static/img/showcase/showcase2.png -------------------------------------------------------------------------------- /hurumap_zw/static/img/showcase/showcase3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/static/img/showcase/showcase3.png -------------------------------------------------------------------------------- /hurumap_zw/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/tables.py -------------------------------------------------------------------------------- /hurumap_zw/templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/templates/_base.html -------------------------------------------------------------------------------- /hurumap_zw/templates/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/templates/_footer.html -------------------------------------------------------------------------------- /hurumap_zw/templates/blocks/partners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/templates/blocks/partners.html -------------------------------------------------------------------------------- /hurumap_zw/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/hurumap_zw/templates/homepage.html -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/manage.py -------------------------------------------------------------------------------- /pesayetu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pesayetu/fixtures/pesayetu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/fixtures/pesayetu.json -------------------------------------------------------------------------------- /pesayetu/formats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pesayetu/formats/en-KE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pesayetu/formats/en-KE/formats.py: -------------------------------------------------------------------------------- 1 | THOUSAND_SEPARATOR = u'\xa0' 2 | CURRENCY_SYMBOL = 'KES' -------------------------------------------------------------------------------- /pesayetu/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pesayetu/profiles/pesayetu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/profiles/pesayetu.py -------------------------------------------------------------------------------- /pesayetu/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/settings.py -------------------------------------------------------------------------------- /pesayetu/sql/ceilings_on_expenditure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/sql/ceilings_on_expenditure.sql -------------------------------------------------------------------------------- /pesayetu/sql/conditional_funds_2015_2016.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/sql/conditional_funds_2015_2016.sql -------------------------------------------------------------------------------- /pesayetu/sql/equitable_allocations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/sql/equitable_allocations.sql -------------------------------------------------------------------------------- /pesayetu/sql/population_sex_2019.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/sql/population_sex_2019.sql -------------------------------------------------------------------------------- /pesayetu/sql/wazimap_geography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/sql/wazimap_geography.sql -------------------------------------------------------------------------------- /pesayetu/static/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pesayetu/static/css/pesayetu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/css/pesayetu.scss -------------------------------------------------------------------------------- /pesayetu/static/geo/country.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/geo/country.geojson -------------------------------------------------------------------------------- /pesayetu/static/geo/country.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/geo/country.topojson -------------------------------------------------------------------------------- /pesayetu/static/geo/county.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/geo/county.geojson -------------------------------------------------------------------------------- /pesayetu/static/geo/county.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/geo/county.topojson -------------------------------------------------------------------------------- /pesayetu/static/img/logo-hi-res-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/img/logo-hi-res-white.png -------------------------------------------------------------------------------- /pesayetu/static/img/logos/cfkenya-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/img/logos/cfkenya-logo.png -------------------------------------------------------------------------------- /pesayetu/static/img/pesayetu-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/img/pesayetu-logo-white.png -------------------------------------------------------------------------------- /pesayetu/static/img/showcase/crowds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/img/showcase/crowds.jpg -------------------------------------------------------------------------------- /pesayetu/static/img/showcase/money.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/img/showcase/money.jpg -------------------------------------------------------------------------------- /pesayetu/static/img/showcase/road.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/img/showcase/road.jpeg -------------------------------------------------------------------------------- /pesayetu/static/img/showcase/savanna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/img/showcase/savanna.jpg -------------------------------------------------------------------------------- /pesayetu/static/img/showcase/school.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/img/showcase/school.jpg -------------------------------------------------------------------------------- /pesayetu/static/img/showcase/van.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/img/showcase/van.jpeg -------------------------------------------------------------------------------- /pesayetu/static/img/showcase/water.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/static/img/showcase/water.jpeg -------------------------------------------------------------------------------- /pesayetu/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/tables.py -------------------------------------------------------------------------------- /pesayetu/templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/templates/_base.html -------------------------------------------------------------------------------- /pesayetu/templates/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/templates/_footer.html -------------------------------------------------------------------------------- /pesayetu/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/templates/about.html -------------------------------------------------------------------------------- /pesayetu/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/pesayetu/templates/homepage.html -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.14 2 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HURUmap-apps/HEAD/utils.py --------------------------------------------------------------------------------