├── .gitignore ├── CONTRIBUTING.md ├── DEPLOY.md ├── LICENSE ├── Makefile ├── README.md ├── certs └── .keep ├── compose.common.yml ├── compose.dev.yml ├── compose.stage_prod.yml ├── compose ├── caddy │ ├── Caddyfile │ ├── Dockerfile │ └── bin │ │ └── start-caddy ├── common │ └── bin │ │ └── wait-for-it └── web │ ├── Dockerfile │ ├── bin │ └── start-web │ └── entrypoint.sh ├── manage.py ├── requirements.txt ├── sql ├── age.sql ├── agriculture_egg_layers.sql ├── agriculture_eggs.sql ├── agriculture_livestock.sql ├── agriculture_meat.sql ├── agriculture_milk.sql ├── agriculture_milk_animals.sql ├── caste.sql ├── childbirthassistance.sql ├── citizenship.sql ├── cookingfuel.sql ├── deputymayoralparty.sql ├── disability.sql ├── drinkingwatersource.sql ├── educationlevelpassed.sql ├── electoral-bodies.sql ├── fieldofstudy.sql ├── foundationtype.sql ├── geography.sql ├── healthfacilities.sql ├── highersecondarylevel-schools.sql ├── homeownership.sql ├── householdfacilities.sql ├── landuse.sql ├── language.sql ├── lightingfuel.sql ├── literacy.sql ├── maternalchildbirthdeaths.sql ├── mayoralparty.sql ├── outerwalltype.sql ├── population_projection_2031.sql ├── poverty.sql ├── registeredcompanies.sql ├── religion.sql ├── rooftype.sql ├── safewater.sql ├── schoolattendance.sql ├── secondarylevel-teachers.sql ├── simpletables │ ├── birthsathealthfacility.sql │ ├── birthswithnonsbaattendant.sql │ ├── birthswithskilledattendant.sql │ ├── childnourishment.sql │ ├── districtaidamounts.sql │ ├── districtaidprojects.sql │ ├── flood_damage.sql │ ├── income.sql │ ├── lifeexpectancy.sql │ ├── politicalparties.sql │ └── pollingplaces.sql ├── toilettype.sql └── voters.sql ├── static └── .keep └── wazimap_np ├── __init__.py ├── agriculture.py ├── business.py ├── demographics.py ├── development.py ├── disasters.py ├── education.py ├── elections.py ├── forests.py ├── health.py ├── households.py ├── profiles.py ├── settings.py ├── static ├── css │ └── custom.css ├── geo │ ├── README.md │ ├── country.geojson │ ├── country.topojson │ ├── district.geojson │ ├── district.topojson │ ├── vdc.geojson │ └── vdc.topojson ├── img │ ├── codefornepal-logo-small.png │ ├── examples │ │ ├── hover_over_graph.png │ │ ├── map_search.png │ │ ├── section_overview.png │ │ └── text_search.png │ └── icons │ │ ├── favicon.ico │ │ └── touch-icon-144x144.png └── js │ └── charts.js ├── tables.py ├── templates ├── _base.html ├── about.html ├── data │ └── data_map.html ├── homepage.html └── profile │ ├── _blocks │ └── _stat_list.html │ ├── profile_detail.html │ └── sections │ ├── agriculture.html │ ├── business.html │ ├── demographics.html │ ├── development.html │ ├── disasters.html │ ├── education.html │ ├── elections.html │ ├── forests.html │ ├── health.html │ └── households.html └── templatetags ├── __init__.py └── nepal_format.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEPLOY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/DEPLOY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/README.md -------------------------------------------------------------------------------- /certs/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compose.common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/compose.common.yml -------------------------------------------------------------------------------- /compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/compose.dev.yml -------------------------------------------------------------------------------- /compose.stage_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/compose.stage_prod.yml -------------------------------------------------------------------------------- /compose/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/compose/caddy/Caddyfile -------------------------------------------------------------------------------- /compose/caddy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/compose/caddy/Dockerfile -------------------------------------------------------------------------------- /compose/caddy/bin/start-caddy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/compose/caddy/bin/start-caddy -------------------------------------------------------------------------------- /compose/common/bin/wait-for-it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/compose/common/bin/wait-for-it -------------------------------------------------------------------------------- /compose/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/compose/web/Dockerfile -------------------------------------------------------------------------------- /compose/web/bin/start-web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/compose/web/bin/start-web -------------------------------------------------------------------------------- /compose/web/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/compose/web/entrypoint.sh -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/requirements.txt -------------------------------------------------------------------------------- /sql/age.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/age.sql -------------------------------------------------------------------------------- /sql/agriculture_egg_layers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/agriculture_egg_layers.sql -------------------------------------------------------------------------------- /sql/agriculture_eggs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/agriculture_eggs.sql -------------------------------------------------------------------------------- /sql/agriculture_livestock.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/agriculture_livestock.sql -------------------------------------------------------------------------------- /sql/agriculture_meat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/agriculture_meat.sql -------------------------------------------------------------------------------- /sql/agriculture_milk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/agriculture_milk.sql -------------------------------------------------------------------------------- /sql/agriculture_milk_animals.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/agriculture_milk_animals.sql -------------------------------------------------------------------------------- /sql/caste.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/caste.sql -------------------------------------------------------------------------------- /sql/childbirthassistance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/childbirthassistance.sql -------------------------------------------------------------------------------- /sql/citizenship.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/citizenship.sql -------------------------------------------------------------------------------- /sql/cookingfuel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/cookingfuel.sql -------------------------------------------------------------------------------- /sql/deputymayoralparty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/deputymayoralparty.sql -------------------------------------------------------------------------------- /sql/disability.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/disability.sql -------------------------------------------------------------------------------- /sql/drinkingwatersource.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/drinkingwatersource.sql -------------------------------------------------------------------------------- /sql/educationlevelpassed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/educationlevelpassed.sql -------------------------------------------------------------------------------- /sql/electoral-bodies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/electoral-bodies.sql -------------------------------------------------------------------------------- /sql/fieldofstudy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/fieldofstudy.sql -------------------------------------------------------------------------------- /sql/foundationtype.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/foundationtype.sql -------------------------------------------------------------------------------- /sql/geography.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/geography.sql -------------------------------------------------------------------------------- /sql/healthfacilities.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/healthfacilities.sql -------------------------------------------------------------------------------- /sql/highersecondarylevel-schools.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/highersecondarylevel-schools.sql -------------------------------------------------------------------------------- /sql/homeownership.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/homeownership.sql -------------------------------------------------------------------------------- /sql/householdfacilities.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/householdfacilities.sql -------------------------------------------------------------------------------- /sql/landuse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/landuse.sql -------------------------------------------------------------------------------- /sql/language.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/language.sql -------------------------------------------------------------------------------- /sql/lightingfuel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/lightingfuel.sql -------------------------------------------------------------------------------- /sql/literacy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/literacy.sql -------------------------------------------------------------------------------- /sql/maternalchildbirthdeaths.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/maternalchildbirthdeaths.sql -------------------------------------------------------------------------------- /sql/mayoralparty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/mayoralparty.sql -------------------------------------------------------------------------------- /sql/outerwalltype.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/outerwalltype.sql -------------------------------------------------------------------------------- /sql/population_projection_2031.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/population_projection_2031.sql -------------------------------------------------------------------------------- /sql/poverty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/poverty.sql -------------------------------------------------------------------------------- /sql/registeredcompanies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/registeredcompanies.sql -------------------------------------------------------------------------------- /sql/religion.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/religion.sql -------------------------------------------------------------------------------- /sql/rooftype.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/rooftype.sql -------------------------------------------------------------------------------- /sql/safewater.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/safewater.sql -------------------------------------------------------------------------------- /sql/schoolattendance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/schoolattendance.sql -------------------------------------------------------------------------------- /sql/secondarylevel-teachers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/secondarylevel-teachers.sql -------------------------------------------------------------------------------- /sql/simpletables/birthsathealthfacility.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/simpletables/birthsathealthfacility.sql -------------------------------------------------------------------------------- /sql/simpletables/birthswithnonsbaattendant.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/simpletables/birthswithnonsbaattendant.sql -------------------------------------------------------------------------------- /sql/simpletables/birthswithskilledattendant.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/simpletables/birthswithskilledattendant.sql -------------------------------------------------------------------------------- /sql/simpletables/childnourishment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/simpletables/childnourishment.sql -------------------------------------------------------------------------------- /sql/simpletables/districtaidamounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/simpletables/districtaidamounts.sql -------------------------------------------------------------------------------- /sql/simpletables/districtaidprojects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/simpletables/districtaidprojects.sql -------------------------------------------------------------------------------- /sql/simpletables/flood_damage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/simpletables/flood_damage.sql -------------------------------------------------------------------------------- /sql/simpletables/income.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/simpletables/income.sql -------------------------------------------------------------------------------- /sql/simpletables/lifeexpectancy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/simpletables/lifeexpectancy.sql -------------------------------------------------------------------------------- /sql/simpletables/politicalparties.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/simpletables/politicalparties.sql -------------------------------------------------------------------------------- /sql/simpletables/pollingplaces.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/simpletables/pollingplaces.sql -------------------------------------------------------------------------------- /sql/toilettype.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/toilettype.sql -------------------------------------------------------------------------------- /sql/voters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/sql/voters.sql -------------------------------------------------------------------------------- /static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wazimap_np/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wazimap_np/agriculture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/agriculture.py -------------------------------------------------------------------------------- /wazimap_np/business.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/business.py -------------------------------------------------------------------------------- /wazimap_np/demographics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/demographics.py -------------------------------------------------------------------------------- /wazimap_np/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/development.py -------------------------------------------------------------------------------- /wazimap_np/disasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/disasters.py -------------------------------------------------------------------------------- /wazimap_np/education.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/education.py -------------------------------------------------------------------------------- /wazimap_np/elections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/elections.py -------------------------------------------------------------------------------- /wazimap_np/forests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/forests.py -------------------------------------------------------------------------------- /wazimap_np/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/health.py -------------------------------------------------------------------------------- /wazimap_np/households.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/households.py -------------------------------------------------------------------------------- /wazimap_np/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/profiles.py -------------------------------------------------------------------------------- /wazimap_np/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/settings.py -------------------------------------------------------------------------------- /wazimap_np/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/css/custom.css -------------------------------------------------------------------------------- /wazimap_np/static/geo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/geo/README.md -------------------------------------------------------------------------------- /wazimap_np/static/geo/country.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/geo/country.geojson -------------------------------------------------------------------------------- /wazimap_np/static/geo/country.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/geo/country.topojson -------------------------------------------------------------------------------- /wazimap_np/static/geo/district.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/geo/district.geojson -------------------------------------------------------------------------------- /wazimap_np/static/geo/district.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/geo/district.topojson -------------------------------------------------------------------------------- /wazimap_np/static/geo/vdc.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/geo/vdc.geojson -------------------------------------------------------------------------------- /wazimap_np/static/geo/vdc.topojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/geo/vdc.topojson -------------------------------------------------------------------------------- /wazimap_np/static/img/codefornepal-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/img/codefornepal-logo-small.png -------------------------------------------------------------------------------- /wazimap_np/static/img/examples/hover_over_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/img/examples/hover_over_graph.png -------------------------------------------------------------------------------- /wazimap_np/static/img/examples/map_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/img/examples/map_search.png -------------------------------------------------------------------------------- /wazimap_np/static/img/examples/section_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/img/examples/section_overview.png -------------------------------------------------------------------------------- /wazimap_np/static/img/examples/text_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/img/examples/text_search.png -------------------------------------------------------------------------------- /wazimap_np/static/img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/img/icons/favicon.ico -------------------------------------------------------------------------------- /wazimap_np/static/img/icons/touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/img/icons/touch-icon-144x144.png -------------------------------------------------------------------------------- /wazimap_np/static/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/static/js/charts.js -------------------------------------------------------------------------------- /wazimap_np/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/tables.py -------------------------------------------------------------------------------- /wazimap_np/templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/_base.html -------------------------------------------------------------------------------- /wazimap_np/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/about.html -------------------------------------------------------------------------------- /wazimap_np/templates/data/data_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/data/data_map.html -------------------------------------------------------------------------------- /wazimap_np/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/homepage.html -------------------------------------------------------------------------------- /wazimap_np/templates/profile/_blocks/_stat_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/profile/_blocks/_stat_list.html -------------------------------------------------------------------------------- /wazimap_np/templates/profile/profile_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/profile/profile_detail.html -------------------------------------------------------------------------------- /wazimap_np/templates/profile/sections/agriculture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/profile/sections/agriculture.html -------------------------------------------------------------------------------- /wazimap_np/templates/profile/sections/business.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/profile/sections/business.html -------------------------------------------------------------------------------- /wazimap_np/templates/profile/sections/demographics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/profile/sections/demographics.html -------------------------------------------------------------------------------- /wazimap_np/templates/profile/sections/development.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/profile/sections/development.html -------------------------------------------------------------------------------- /wazimap_np/templates/profile/sections/disasters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/profile/sections/disasters.html -------------------------------------------------------------------------------- /wazimap_np/templates/profile/sections/education.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/profile/sections/education.html -------------------------------------------------------------------------------- /wazimap_np/templates/profile/sections/elections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/profile/sections/elections.html -------------------------------------------------------------------------------- /wazimap_np/templates/profile/sections/forests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/profile/sections/forests.html -------------------------------------------------------------------------------- /wazimap_np/templates/profile/sections/health.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/profile/sections/health.html -------------------------------------------------------------------------------- /wazimap_np/templates/profile/sections/households.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templates/profile/sections/households.html -------------------------------------------------------------------------------- /wazimap_np/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wazimap_np/templatetags/nepal_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeforNepal/nepalmap_app/HEAD/wazimap_np/templatetags/nepal_format.py --------------------------------------------------------------------------------