├── .coveragerc ├── .dockerignore ├── .env ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE.txt ├── README.md ├── administrative_divisions.csv.example ├── administrative_divisions_india.csv.example ├── config └── database.yml ├── contrib ├── __init__.py └── storage │ ├── __init__.py │ └── my_whitenoise.py ├── docker-compose.yml ├── docker_entrypoint.sh ├── docker_setup_linux.sh ├── docs ├── add_batch.png ├── add_interviewer.png ├── add_logic.png ├── add_question_to_lib.png ├── analysis_report.png ├── analysis_report_drill_down.png ├── batch_questions.png ├── breadcrumbs.png ├── completion_rates.png ├── deployment_guide.md ├── download_spreadsheet.png ├── ea_level_completion_rate.png ├── edit_interviewer.png ├── enumeration_areas.png ├── example-ussd-code.jpg ├── household_group.png ├── household_survey_response.png ├── index.md ├── indicator_formula.png ├── indicators_home.png ├── installation.md ├── interviewer_home.png ├── interviewer_path.png ├── manage_open_closed.png ├── manage_users.png ├── map_page.png ├── mobile_money_sheets.png ├── module_page.png ├── new_ea.png ├── new_survey_batch.png ├── new_survey_screen.png ├── odk_collect_choose_setting.png ├── odk_google_play.png ├── odk_guide.md ├── odk_select_other_platform.png ├── open_close_batch.png ├── question_bank_index.png ├── select_lib_questions.png ├── set_odk_credentials.png ├── survey_batches.png ├── survey_page.png ├── tests.md ├── uSurvey-App-Architecture.jpg ├── uSurvey-Deployment-Architecture.jpg ├── uSurvey-Software-Architecture.jpg ├── user_manual.doc ├── user_manual.md ├── user_manual.odt ├── ussd-code-example.jpg ├── ussd-integration.md ├── usurvey-deployment-architecture.jpg ├── usurvey_home.png └── usurvey_portal_manual.pdf ├── files └── answerFiles │ ├── testaudio.m4a │ ├── testimage.png │ └── testvideo.mov ├── loaders └── load_ea_locations.sh ├── manage.py ├── media └── success-stories │ ├── 10_testimage.png │ ├── 10_testimage_G1fD9uk.png │ ├── 11_testimage.png │ ├── 12_testimage.png │ ├── 13_testimage.png │ ├── 14_testimage.png │ ├── 18_testimage.png │ ├── 19_testimage.png │ ├── 19_testimage_9E7Tel3.png │ ├── 21_testimage.png │ ├── 22_testimage.png │ ├── 23_testimage.png │ ├── 25_testimage.png │ ├── 25_testimage_L9lEq24.png │ ├── 27_testimage.png │ ├── 28_testimage.png │ ├── 28_testimage_Fn3kRgX.png │ ├── 30_testimage.png │ ├── 33_testimage.png │ ├── 35_testimage.png │ ├── 35_testimage_EC4nxoA.png │ ├── 35_testimage_OjaiSZt.png │ ├── 35_testimage_wPeICfl.png │ ├── 38_testimage.png │ ├── 39_testimage.png │ ├── 3_testimage.png │ ├── 3_testimage_GnvCmJz.png │ ├── 41_testimage.png │ ├── 41_testimage_jRpkPQ4.png │ ├── 41_testimage_vRjkbaH.png │ ├── 44_testimage.png │ ├── 47_testimage.png │ ├── 48_testimage.png │ ├── 49_testimage.png │ ├── 4_testimage.png │ ├── 4_testimage_sIP1gYy.png │ ├── 50_testimage.png │ ├── 56_testimage.png │ ├── 56_testimage_aNliNoy.png │ ├── 57_testimage.png │ ├── 58_testimage.png │ ├── 58_testimage_MMmMbFE.png │ ├── 62_testimage.png │ ├── 66_testimage.png │ ├── 67_testimage.png │ ├── 69_testimage.png │ ├── 73_testimage.png │ ├── 74_testimage.png │ ├── 77_testimage.png │ ├── 77_testimage_BMcMOhN.png │ ├── 80_testimage.png │ ├── 85_testimage.png │ ├── 85_testimage_srE1ADA.png │ ├── 90_testimage.png │ ├── 93_testimage.png │ ├── 98_testimage.png │ └── 98_testimage_3VqXDp1.png ├── mics ├── __init__.py ├── include │ └── python2.7 ├── local │ ├── __init__.py │ ├── include │ ├── settings.py │ ├── snap-ci │ ├── testsettings.py │ ├── travis-settings.py │ ├── urls.py │ └── wsgi.py ├── settings.py ├── snap-ci │ ├── ft.sh │ ├── setup.sh │ ├── snap-settings.py │ └── ut.sh ├── travis-settings.py ├── urls.py └── wsgi.py ├── mkdocs.yml ├── pip-freeze.txt ├── pip-requires.txt ├── screenshots └── .gitignore ├── snap-settings.py ├── supervisord.conf ├── survey ├── __init__.py ├── context_processor.py ├── features │ ├── Batch-steps.py │ ├── Batch.feature │ ├── Layout.feature │ ├── Question-steps.py │ ├── Questions.feature │ ├── __init__.py │ ├── about_page.feature │ ├── about_us_steps.py │ ├── aggregates-steps.py │ ├── aggregates.feature │ ├── bulksms-steps.py │ ├── bulksms.feature │ ├── ea.feature │ ├── ea_steps.py │ ├── home_page-step.py │ ├── home_page.feature │ ├── household_member-steps.py │ ├── household_member.feature │ ├── household_member_groups.feature │ ├── household_member_groups_steps.py │ ├── households-steps.py │ ├── households.feature │ ├── index-steps.py │ ├── indicators-steps.py │ ├── indicators.feature │ ├── investigators-steps.py │ ├── investigators.feature │ ├── layout-steps.py │ ├── location_hierarchy.feature │ ├── location_hierarchy_steps.py │ ├── location_weights.feature │ ├── location_weights_steps.py │ ├── login-steps.py │ ├── login.feature │ ├── page_objects │ │ ├── __init__.py │ │ ├── accounts.py │ │ ├── aggregates.py │ │ ├── base.py │ │ ├── batches.py │ │ ├── ea.py │ │ ├── household_member.py │ │ ├── household_member_groups.py │ │ ├── households.py │ │ ├── indicators.py │ │ ├── investigators.py │ │ ├── location_hierarchy.py │ │ ├── question.py │ │ ├── question_module.py │ │ ├── root.py │ │ ├── rules.py │ │ ├── survey_completion_rates.py │ │ ├── surveys.py │ │ ├── uploads.py │ │ ├── users.py │ │ └── weights.py │ ├── permissions-steps.py │ ├── permissions.feature │ ├── question_module-steps.py │ ├── question_module.feature │ ├── rule_to_batch-steps.py │ ├── rules_to_batch.feature │ ├── simple_indicator_chart.feature │ ├── survey.feature │ ├── survey_steps.py │ ├── upload_location-steps.py │ ├── upload_locations.feature │ ├── user_settings-steps.py │ ├── user_settings.feature │ ├── users-steps.py │ └── users.feature ├── fixtures │ ├── answeraccessdefinition.json │ ├── contenttypes.json │ ├── enumeration_area.json │ ├── groups.json │ ├── location_types.json │ ├── locations.json │ ├── permisions.json │ └── permissions.json ├── forms │ ├── __init__.py │ ├── aboutus_form.py │ ├── aggregates.py │ ├── answer.py │ ├── enumeration_area.py │ ├── filters.py │ ├── form_helper.py │ ├── indicator.py │ ├── interviewer.py │ ├── location_details.py │ ├── logic.py │ ├── password_mgt.py │ ├── question.py │ ├── question_module_form.py │ ├── question_set.py │ ├── question_template.py │ ├── respondent_group.py │ ├── response_validation.py │ ├── surveys.py │ ├── users.py │ ├── validation.py │ └── widgets.py ├── interviewer_configs.py ├── interviewer_configs.py.example ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── clear_locations.py │ │ ├── import_countries.py │ │ ├── import_location.py │ │ ├── load_answers.py │ │ └── load_parameters.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20171219_1356.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── about_us_content.py │ ├── access_channels.py │ ├── backend.py │ ├── base.py │ ├── batch.py │ ├── batch_questions.py │ ├── enumeration_area.py │ ├── generics.py │ ├── helper_constants.py │ ├── indicators.py │ ├── interviewer.py │ ├── interviews.py │ ├── location_weight.py │ ├── locations.py │ ├── odk_submission.py │ ├── question_module.py │ ├── question_templates.py │ ├── questions.py │ ├── respondents.py │ ├── response_validation.py │ ├── survey_listing.py │ ├── surveys.py │ └── users.py ├── odk │ ├── __init__.py │ ├── utils │ │ ├── __init__.py │ │ ├── log.py │ │ └── odk_helper.py │ └── views.py ├── online │ ├── __init__.py │ ├── online_handler.py │ ├── simulator.py │ ├── utils.py │ └── views.py ├── services │ ├── __init__.py │ ├── export_interviewers.py │ ├── export_interviews.py │ ├── export_model.py │ ├── export_questions.py │ └── results_download_service.py ├── static │ ├── asset │ │ ├── css │ │ │ ├── _notes │ │ │ │ └── dwsync.xml │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ ├── _notes │ │ │ └── dwsync.xml │ │ │ └── bootstrap.min.js │ ├── assets │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── font-awesome-4.7.0 │ │ │ └── font-awesome-4.7.0 │ │ │ │ └── HELP-US-OUT.txt │ │ ├── font-awesome.css │ │ ├── fonts.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── formoid-solid-blue.css │ │ ├── formstyleres.css │ │ ├── images │ │ │ └── search.png │ │ ├── jquery-2.js │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ ├── rougj │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.js │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── font-awesome-4.7.0 │ │ │ │ └── font-awesome-4.7.0 │ │ │ │ │ └── HELP-US-OUT.txt │ │ │ ├── font-awesome.css │ │ │ ├── fonts.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ └── jquery-2.js │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ └── usur.css │ ├── attrchange.js │ ├── attrchange_ext.js │ ├── banassets │ │ ├── arrows.png │ │ ├── arrowsb.png │ │ ├── banstyle.css │ │ ├── image1.png │ │ ├── image1bup.png │ │ └── images │ │ │ ├── arrows.png │ │ │ ├── map.png │ │ │ └── mapbup.png │ ├── bootstrap-switch │ │ ├── bootstrap-switch.css │ │ └── bootstrap-switch.js │ ├── bootstrap.min.css │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ └── bootstrap.js │ ├── chosen │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── chosen.css │ │ └── chosen.jquery.js │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ └── icon.png │ │ │ │ │ └── icon.png │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmp.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ │ └── readme.md │ │ └── styles.js │ ├── css │ │ ├── _notes │ │ │ ├── dwsync.xml │ │ │ └── interview-status.css │ │ ├── animate.css │ │ ├── application.less │ │ ├── awesomplete.css │ │ ├── box.css │ │ ├── colors │ │ │ ├── _notes │ │ │ │ └── dwsync.xml │ │ │ ├── beige.css │ │ │ ├── blue.css │ │ │ ├── cyan.css │ │ │ ├── green.css │ │ │ ├── jade.css │ │ │ ├── orange.css │ │ │ ├── peach.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ ├── sky-blue.css │ │ │ └── yellow.css │ │ ├── dataTables.bootstrap.css │ │ ├── dataTables.jqueryui.css │ │ ├── education-center.css │ │ ├── flexslider.css │ │ ├── flipclock.css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ ├── form-styles-merchantservices.css │ │ ├── formoid-solid-blue.css │ │ ├── formset-extra.css │ │ ├── images │ │ │ └── page-loader.gif │ │ ├── instyle.css │ │ ├── internalpages.css │ │ ├── jquery-ui.css │ │ ├── jquery-ui2.css │ │ ├── jquery-uis.css │ │ ├── jquery.flexslider-min.js │ │ ├── jquery.shadow.css │ │ ├── loader.css │ │ ├── main.css │ │ ├── mprogress.min.css │ │ ├── normalize.css │ │ ├── redips_drag_style.css │ │ ├── responsive.css │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.min.css │ │ ├── select2.png │ │ ├── select2x2.png │ │ ├── slicknav.css │ │ ├── slidebars-extended.js │ │ ├── slidebars.css │ │ ├── slidebars.js │ │ ├── style.css │ │ ├── style_hmm.css │ │ ├── styles.css │ │ └── topNav.css │ ├── css1 │ │ ├── application.less │ │ └── jquery-ui.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── formoid │ │ ├── .htaccess │ │ ├── form.formoid │ │ ├── formoid-solid-blue.css │ │ ├── formoid-solid-blue.js │ │ ├── formoid.eot │ │ ├── formoid.svg │ │ ├── formoid.ttf │ │ ├── formoid.woff │ │ ├── icons.eot │ │ ├── icons.svg │ │ ├── icons.ttf │ │ ├── icons.woff │ │ └── jquery.min.js │ ├── formoid1 │ │ ├── formoid-solid-blue.css │ │ ├── formoid-solid-blue.js │ │ ├── formoid.eot │ │ ├── formoid.svg │ │ ├── formoid.ttf │ │ ├── formoid.woff │ │ ├── icons.eot │ │ ├── icons.svg │ │ ├── icons.ttf │ │ ├── icons.woff │ │ └── jquery.min.js │ ├── images │ │ ├── _notes │ │ │ └── dwsync.xml │ │ ├── arrows.png │ │ ├── favicon.png │ │ ├── faviconbak.png │ │ ├── footer-uSurvey.png │ │ ├── icon_bar2.png │ │ ├── icon_bar24.png │ │ ├── icon_bar2_2.png │ │ ├── icon_bar2_22.png │ │ ├── icon_bar3.png │ │ ├── icon_bar_red.png │ │ ├── login_icon.png │ │ ├── map.png │ │ ├── oupput.png │ │ ├── question.jpg │ │ ├── real.png │ │ ├── slide-01-bg.jpg │ │ ├── slide-02-bg - Copy.jpg │ │ ├── slide-02-bg--.jpg │ │ ├── slide-03-bg.jpg │ │ ├── slider │ │ │ ├── _notes │ │ │ │ └── dwsync.xml │ │ │ ├── bg1.jpg │ │ │ └── bg2.jpg │ │ ├── slider3.png │ │ ├── uSurvey.png │ │ ├── userICON.png │ │ ├── userICON_admin.png │ │ └── ussd.png │ ├── img │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── L1.jpg │ │ ├── L1_old.jpg │ │ ├── L2.jpg │ │ ├── L2_old.jpg │ │ ├── L3.jpg │ │ ├── L3_old.jpg │ │ ├── L4.jpg │ │ ├── L4_old.jpg │ │ ├── add.png │ │ ├── ajax-loader.gif │ │ ├── dark_embroidery.png │ │ ├── delete-icon │ │ ├── delete-icon.png │ │ ├── delete.png │ │ ├── drag.png │ │ ├── edit.png │ │ ├── helpuganda.jpg │ │ ├── home.png │ │ ├── imgmor.png │ │ ├── imgsam.png │ │ ├── imgussd.png │ │ ├── iphone-sim.png │ │ ├── iphone.png │ │ ├── iphonebup.png │ │ ├── iphonebup2.png │ │ ├── iphonebup3.png │ │ ├── learnmore.png │ │ ├── loader-128x │ │ │ ├── Preloader_1.gif │ │ │ ├── Preloader_2.gif │ │ │ ├── Preloader_3.gif │ │ │ ├── Preloader_4.gif │ │ │ ├── Preloader_5.gif │ │ │ ├── Preloader_6.gif │ │ │ └── Preloader_7.gif │ │ ├── loader-32x │ │ │ ├── loader1.gif │ │ │ ├── loader2.gif │ │ │ ├── loader3.gif │ │ │ ├── loader4.gif │ │ │ ├── loader5.gif │ │ │ ├── loader6.gif │ │ │ └── loader7.gif │ │ ├── loader-64x │ │ │ ├── Preloader_1.gif │ │ │ ├── Preloader_2.gif │ │ │ ├── Preloader_3.gif │ │ │ ├── Preloader_4.gif │ │ │ ├── Preloader_5.gif │ │ │ ├── Preloader_6.gif │ │ │ └── Preloader_7.gif │ │ ├── question.jpg │ │ ├── switch.png │ │ ├── symphony.png │ │ ├── twitter.png │ │ ├── u1.jpg │ │ ├── u10.jpg │ │ ├── u2.jpg │ │ ├── u3.jpg │ │ ├── u3_new.jpg │ │ ├── u4.jpg │ │ ├── u50.jpg │ │ ├── uSurvey.png │ │ ├── uSurvey_old.png │ │ ├── uganda_crane.jpg │ │ ├── unews.png │ │ └── uniceflogo.png │ ├── jquery-1.11.1.min.js │ ├── jquery-ui.css │ ├── jquery-ui2.css │ ├── jquery.dataTables.css │ ├── jquery.dataTables.min.css │ ├── jquery.dataTables.min.js │ ├── jquery.dataTables_themeroller.css │ ├── jquerysctipttop.css │ ├── js │ │ ├── _notes │ │ │ └── dwsync.xml │ │ ├── application.js │ │ ├── awesomplete.min.js │ │ ├── background.cycle.js │ │ ├── background.cycle.min.js │ │ ├── batch.js │ │ ├── batch_questions.js │ │ ├── bulk-sms.js │ │ ├── contact.js │ │ ├── count-to.js │ │ ├── cytoscapejs │ │ │ ├── .DS_Store │ │ │ ├── LGPL-LICENSE.txt │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── cytoscape-edgehandles.js │ │ │ ├── cytoscape.js │ │ │ ├── cytoscape.min.js │ │ │ ├── dagre.js │ │ │ ├── dagre.min.js │ │ │ ├── jquery-1.11.1.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ ├── dataTables.bootstrap.js │ │ ├── download.js │ │ ├── ea.js │ │ ├── exporting.js │ │ ├── flipclock.min.js │ │ ├── formula.js │ │ ├── highcharts.js │ │ ├── household.js │ │ ├── household_member_group.js │ │ ├── indicator.js │ │ ├── investigator.js │ │ ├── jquery-2.0.0.min.js │ │ ├── jquery-2.1.4.min.js │ │ ├── jquery-migrate-1.2.1.min.js │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.js │ │ ├── jquery-ui │ │ │ ├── external │ │ │ │ └── jquery │ │ │ │ │ └── jquery.js │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── index.html │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery-ui.structure.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ ├── jquery-ui.theme.css │ │ │ └── jquery-ui.theme.min.css │ │ ├── jquery.appear.js │ │ ├── jquery.countdown.js │ │ ├── jquery.dataTables.js │ │ ├── jquery.easypiechart.js │ │ ├── jquery.easypiechart.min.js │ │ ├── jquery.fitvids.js │ │ ├── jquery.formset.js │ │ ├── jquery.isotope.js │ │ ├── jquery.isotope.min.js │ │ ├── jquery.lettering.js │ │ ├── jquery.migrate.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.min2.js │ │ ├── jquery.nicescroll.js │ │ ├── jquery.nicescroll.min.js │ │ ├── jquery.parallax.js │ │ ├── jquery.slicknav.js │ │ ├── jquery.tablednd.js │ │ ├── jquery.textillate.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── js-graph-it │ │ │ ├── .DS_Store │ │ │ ├── js-graph-it.css │ │ │ ├── js-graph-it.js │ │ │ ├── license.txt │ │ │ └── sf-homepage │ │ │ │ ├── arrow.gif │ │ │ │ ├── arrow_d.gif │ │ │ │ ├── arrow_l.gif │ │ │ │ ├── arrow_r.gif │ │ │ │ ├── arrow_u.gif │ │ │ │ ├── gettingstarted.html │ │ │ │ ├── gettingstarted_1.html │ │ │ │ ├── gettingstarted_2.html │ │ │ │ ├── gettingstarted_3.html │ │ │ │ ├── gettingstarted_4.html │ │ │ │ ├── gettingstarted_5.html │ │ │ │ ├── gettingstarted_6.html │ │ │ │ ├── gettingstarted_7.html │ │ │ │ ├── gettingstarted_8.html │ │ │ │ ├── gettingstarted_9.html │ │ │ │ ├── gettingstarted_end.html │ │ │ │ ├── gradient.jpg │ │ │ │ ├── index.html │ │ │ │ ├── js-graph-it.css │ │ │ │ ├── js-graph-it.js │ │ │ │ ├── move.gif │ │ │ │ ├── sf-homepage.css │ │ │ │ └── story.html │ │ ├── less.js │ │ ├── levels.js │ │ ├── location-widget.js │ │ ├── logic.js │ │ ├── main.js │ │ ├── maps.js │ │ ├── mediaelement-and-player.js │ │ ├── modernizr.js │ │ ├── modernizrr.js │ │ ├── mprogress.min.js │ │ ├── multichoice-bar-chart.js │ │ ├── multichoice-stacked-bar-chart.js │ │ ├── new_household.js │ │ ├── nivo-lightbox.js │ │ ├── nivo-lightbox.min.js │ │ ├── numerical-bar-chart.js │ │ ├── owl.carousel.js │ │ ├── owl.carousel.min.js │ │ ├── question_options.js │ │ ├── question_validation.js │ │ ├── questions.js │ │ ├── reconnecting-websocket.js │ │ ├── reconnecting-websocket.min.js │ │ ├── redips_drag │ │ │ ├── header.js │ │ │ ├── redips-drag-min.js │ │ │ ├── redips-drag-source.js │ │ │ ├── script.js │ │ │ └── style.css │ │ ├── script.js │ │ ├── select2.full.js │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── simple_indicator_bar_chart.js │ │ ├── simulator.js │ │ ├── statusbar.js │ │ ├── survey.js │ │ ├── survey_status.js │ │ ├── textcounter.js │ │ ├── type-auto-suggest.js │ │ ├── underscore.js │ │ ├── users.js │ │ ├── vendor │ │ │ ├── .DS_Store │ │ │ ├── jquery-1.9.1.min.js │ │ │ └── modernizr-2.6.2.min.js │ │ └── vis │ │ │ ├── CONTRIBUTING.md │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE-APACHE-2.0 │ │ │ ├── LICENSE-MIT │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── docs │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── carousel.css │ │ │ │ ├── prettify.css │ │ │ │ └── style.css │ │ │ ├── data │ │ │ │ ├── dataset.html │ │ │ │ ├── dataview.html │ │ │ │ └── index.html │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── graph2d │ │ │ │ └── index.html │ │ │ ├── graph3d │ │ │ │ └── index.html │ │ │ ├── img │ │ │ │ ├── crossword.png │ │ │ │ ├── crosswordStrong.png │ │ │ │ ├── external-link-icons │ │ │ │ │ ├── external-link-icon-white.png │ │ │ │ │ ├── external-link-icon.png │ │ │ │ │ └── license.txt │ │ │ │ ├── graph │ │ │ │ │ ├── graph.png │ │ │ │ │ └── graph120x60.png │ │ │ │ ├── graph3d.png │ │ │ │ ├── graph3d120x60.png │ │ │ │ ├── timeline │ │ │ │ │ ├── timeline.png │ │ │ │ │ └── timeline120x60.png │ │ │ │ ├── vis_overview.odg │ │ │ │ └── vis_overview.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── docs.min.js │ │ │ │ ├── googleAnalytics.js │ │ │ │ ├── ie-emulation-modes-warning.js │ │ │ │ ├── ie10-viewport-bug-workaround.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── main.js │ │ │ │ ├── prettify │ │ │ │ │ ├── lang-apollo.js │ │ │ │ │ ├── lang-css.js │ │ │ │ │ ├── lang-hs.js │ │ │ │ │ ├── lang-lisp.js │ │ │ │ │ ├── lang-lua.js │ │ │ │ │ ├── lang-ml.js │ │ │ │ │ ├── lang-proto.js │ │ │ │ │ ├── lang-scala.js │ │ │ │ │ ├── lang-sql.js │ │ │ │ │ ├── lang-vb.js │ │ │ │ │ ├── lang-vhdl.js │ │ │ │ │ ├── lang-wiki.js │ │ │ │ │ ├── lang-yaml.js │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── prettify.js │ │ │ │ ├── smooth-scroll.min.js │ │ │ │ └── toggleTable.js │ │ │ ├── network │ │ │ │ ├── configure.html │ │ │ │ ├── edges.html │ │ │ │ ├── groups.html │ │ │ │ ├── index.html │ │ │ │ ├── interaction.html │ │ │ │ ├── layout.html │ │ │ │ ├── manipulation.html │ │ │ │ ├── nodes.html │ │ │ │ └── physics.html │ │ │ └── timeline │ │ │ │ └── index.html │ │ │ └── examples │ │ │ ├── googleAnalytics.js │ │ │ ├── graph2d │ │ │ ├── 01_basic.html │ │ │ ├── 02_bars.html │ │ │ ├── 03_groups.html │ │ │ ├── 04_rightAxis.html │ │ │ ├── 05_bothAxis.html │ │ │ ├── 06_interpolation.html │ │ │ ├── 07_scrollingAndSorting.html │ │ │ ├── 08_performance.html │ │ │ ├── 09_external_legend.html │ │ │ ├── 10_barsSideBySide.html │ │ │ ├── 11_barsSideBySideGroups.html │ │ │ ├── 12_customRange.html │ │ │ ├── 13_localization.html │ │ │ ├── 14_toggleGroups.html │ │ │ ├── 15_streaming_data.html │ │ │ ├── 16_bothAxisTitles.html │ │ │ ├── 17_dynamicStyling.html │ │ │ ├── 18_scatterplot.html │ │ │ ├── 19_labels.html │ │ │ └── default.css │ │ │ ├── graph3d │ │ │ ├── 01_basics.html │ │ │ ├── 02_camera.html │ │ │ ├── 03_filter_data.html │ │ │ ├── 04_animation.html │ │ │ ├── 05_line.html │ │ │ ├── 06_moving_dots.html │ │ │ ├── 07_dot_cloud_colors.html │ │ │ ├── 08_dot_cloud_size.html │ │ │ ├── 09_mobile.html │ │ │ ├── 10_styling.html │ │ │ ├── 11_tooltips.html │ │ │ ├── 12_custom_labels.html │ │ │ ├── default.css │ │ │ └── playground │ │ │ │ ├── csv2array.js │ │ │ │ ├── csv2datatable.html │ │ │ │ ├── datasource.html │ │ │ │ ├── datasource.php │ │ │ │ ├── index.html │ │ │ │ ├── playground.css │ │ │ │ ├── playground.js │ │ │ │ └── prettify │ │ │ │ ├── lang-apollo.js │ │ │ │ ├── lang-css.js │ │ │ │ ├── lang-hs.js │ │ │ │ ├── lang-lisp.js │ │ │ │ ├── lang-lua.js │ │ │ │ ├── lang-ml.js │ │ │ │ ├── lang-proto.js │ │ │ │ ├── lang-scala.js │ │ │ │ ├── lang-sql.js │ │ │ │ ├── lang-vb.js │ │ │ │ ├── lang-vhdl.js │ │ │ │ ├── lang-wiki.js │ │ │ │ ├── lang-yaml.js │ │ │ │ ├── prettify.css │ │ │ │ └── prettify.js │ │ │ ├── network │ │ │ ├── basicUsage.html │ │ │ ├── data │ │ │ │ ├── datasets.html │ │ │ │ ├── dotLanguage │ │ │ │ │ ├── data │ │ │ │ │ │ ├── cellular_automata.gv.txt │ │ │ │ │ │ ├── computer_network.gv.txt │ │ │ │ │ │ └── simple.gv.txt │ │ │ │ │ ├── dotLanguage.html │ │ │ │ │ ├── dotPlayground.html │ │ │ │ │ └── graphvizGallery │ │ │ │ │ │ ├── fsm.gv.txt │ │ │ │ │ │ ├── hello.gv.txt │ │ │ │ │ │ ├── process.gv.txt │ │ │ │ │ │ ├── screenshots │ │ │ │ │ │ ├── fsm.png │ │ │ │ │ │ ├── hello.png │ │ │ │ │ │ ├── softmaint.png │ │ │ │ │ │ └── traffic_lights.png │ │ │ │ │ │ ├── siblings.gv.txt │ │ │ │ │ │ ├── softmaint.gv.txt │ │ │ │ │ │ ├── traffic_lights.gv.txt │ │ │ │ │ │ ├── transparency.gv.txt │ │ │ │ │ │ ├── twopi2.gv.txt │ │ │ │ │ │ ├── unix.gv.txt │ │ │ │ │ │ └── world.gv.txt │ │ │ │ ├── dynamicData.html │ │ │ │ ├── importingFromGephi.html │ │ │ │ ├── scalingCustom.html │ │ │ │ ├── scalingNodesEdges.html │ │ │ │ └── scalingNodesEdgesLabels.html │ │ │ ├── datasources │ │ │ │ ├── WorldCup2014.js │ │ │ │ └── WorldCup2014.json │ │ │ ├── edgeStyles │ │ │ │ ├── arrows.html │ │ │ │ ├── colors.html │ │ │ │ ├── dashes.html │ │ │ │ ├── smooth.html │ │ │ │ └── smoothWorldCup.html │ │ │ ├── events │ │ │ │ ├── interactionEvents.html │ │ │ │ ├── physicsEvents.html │ │ │ │ └── renderEvents.html │ │ │ ├── exampleApplications │ │ │ │ ├── lesMiserables.html │ │ │ │ ├── loadingBar.html │ │ │ │ ├── neighbourhoodHighlight.html │ │ │ │ ├── nodeLegend.html │ │ │ │ └── worldCupPerformance.html │ │ │ ├── exampleUtil.js │ │ │ ├── img │ │ │ │ ├── indonesia │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 10.png │ │ │ │ │ ├── 11.png │ │ │ │ │ ├── 12.png │ │ │ │ │ ├── 13.png │ │ │ │ │ ├── 14.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── refresh-cl │ │ │ │ │ ├── Hardware-Fax-icon.png │ │ │ │ │ ├── Hardware-Laptop-1-icon.png │ │ │ │ │ ├── Hardware-Mobile-Phone-icon.png │ │ │ │ │ ├── Hardware-My-Computer-3-icon.png │ │ │ │ │ ├── Hardware-My-PDA-02-icon.png │ │ │ │ │ ├── Hardware-My-PDA-04-icon.png │ │ │ │ │ ├── Hardware-My-PDA-05-icon.png │ │ │ │ │ ├── Hardware-My-Phone-Picture-icon.png │ │ │ │ │ ├── Hardware-Printer-Blue-icon.png │ │ │ │ │ ├── Misc-Scanner-default-icon.png │ │ │ │ │ ├── Network-Drive-icon.png │ │ │ │ │ ├── Network-Internet-Connection-icon.png │ │ │ │ │ ├── Network-Pipe-icon.png │ │ │ │ │ ├── System-Firewall-2-icon.png │ │ │ │ │ ├── System-Globe-icon.png │ │ │ │ │ └── license.txt │ │ │ │ └── soft-scraps-icons │ │ │ │ │ ├── Document-icon24.png │ │ │ │ │ ├── Document-icon32.png │ │ │ │ │ ├── Document-icon48.png │ │ │ │ │ ├── Email-icon24.png │ │ │ │ │ ├── Email-icon32.png │ │ │ │ │ ├── Email-icon48.png │ │ │ │ │ ├── Folder-icon24.png │ │ │ │ │ ├── Folder-icon32.png │ │ │ │ │ ├── Folder-icon48.png │ │ │ │ │ ├── Folder-icon64.png │ │ │ │ │ ├── Smiley-Angry-icon.png │ │ │ │ │ ├── Smiley-Grin-icon.png │ │ │ │ │ ├── User-Administrator-Blue-icon.png │ │ │ │ │ ├── User-Administrator-Green-icon.png │ │ │ │ │ ├── User-Coat-Blue-icon.png │ │ │ │ │ ├── User-Coat-Green-icon.png │ │ │ │ │ ├── User-Coat-Red-icon.png │ │ │ │ │ ├── User-Executive-Green-icon.png │ │ │ │ │ ├── User-Preppy-Blue-icon.png │ │ │ │ │ ├── User-Preppy-Red-icon.png │ │ │ │ │ └── license.txt │ │ │ ├── labels │ │ │ │ ├── labelAlignment.html │ │ │ │ ├── labelBackground.html │ │ │ │ ├── labelColorAndSize.html │ │ │ │ ├── labelStroke.html │ │ │ │ └── multilineText.html │ │ │ ├── layout │ │ │ │ ├── hierarchicalLayout.html │ │ │ │ ├── hierarchicalLayoutMethods.html │ │ │ │ ├── hierarchicalLayoutUserdefined.html │ │ │ │ └── randomSeed.html │ │ │ ├── nodeStyles │ │ │ │ ├── HTMLInNodes.html │ │ │ │ ├── circularImages.html │ │ │ │ ├── colors.html │ │ │ │ ├── customGroups.html │ │ │ │ ├── groups.html │ │ │ │ ├── icons.html │ │ │ │ ├── images.html │ │ │ │ ├── shadows.html │ │ │ │ └── shapes.html │ │ │ ├── other │ │ │ │ ├── animationShowcase.html │ │ │ │ ├── clustering.html │ │ │ │ ├── clusteringByZoom.html │ │ │ │ ├── configuration.html │ │ │ │ ├── manipulation.html │ │ │ │ ├── navigation.html │ │ │ │ └── performance.html │ │ │ └── physics │ │ │ │ └── physicsConfiguration.html │ │ │ └── timeline │ │ │ ├── basicUsage.html │ │ │ ├── dataHandling │ │ │ ├── dataSerialization.html │ │ │ └── loadExternalData.html │ │ │ ├── editing │ │ │ ├── customSnappingOfItems.html │ │ │ ├── editingItems.html │ │ │ ├── editingItemsCallbacks.html │ │ │ ├── individualEditableItems.html │ │ │ └── updateDataOnEvent.html │ │ │ ├── groups │ │ │ ├── groups.html │ │ │ ├── groupsOrdering.html │ │ │ └── subgroups.html │ │ │ ├── interaction │ │ │ ├── animateWindow.html │ │ │ ├── clickToUse.html │ │ │ ├── eventListeners.html │ │ │ ├── limitMoveAndZoom.html │ │ │ ├── navigationMenu.html │ │ │ └── setSelection.html │ │ │ ├── items │ │ │ ├── backgroundAreas.html │ │ │ ├── backgroundAreasWithGroups.html │ │ │ ├── htmlContents.html │ │ │ ├── itemOrdering.html │ │ │ ├── pointItems.html │ │ │ └── rangeOverflowItem.html │ │ │ ├── other │ │ │ ├── customTimeBars.html │ │ │ ├── dataAttributes.html │ │ │ ├── dataAttributesAll.html │ │ │ ├── groupsPerformance.html │ │ │ ├── hidingPeriods.html │ │ │ ├── localization.html │ │ │ ├── performance.html │ │ │ └── requirejs │ │ │ │ ├── requirejs_example.html │ │ │ │ └── scripts │ │ │ │ ├── main.js │ │ │ │ └── require.js │ │ │ ├── resources │ │ │ ├── data │ │ │ │ ├── basic.json │ │ │ │ └── wk2014.json │ │ │ └── img │ │ │ │ ├── Hardware-Mobile-Phone-icon.png │ │ │ │ ├── attachment-icon.png │ │ │ │ ├── blog-post-edit-icon.png │ │ │ │ ├── comments-icon.png │ │ │ │ ├── community-users-icon.png │ │ │ │ ├── license.txt │ │ │ │ ├── license_aesthetica-2.txt │ │ │ │ ├── license_refresh-cl.txt │ │ │ │ ├── mail-icon.png │ │ │ │ ├── notes-edit-icon.png │ │ │ │ ├── product-icon.png │ │ │ │ └── truck-icon.png │ │ │ └── styling │ │ │ ├── axisOrientation.html │ │ │ ├── customCss.html │ │ │ ├── gridStyling.html │ │ │ ├── itemClassNames.html │ │ │ └── itemTemplates.html │ ├── leaflet │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet-src.js │ │ ├── leaflet.css │ │ ├── leaflet.ie.css │ │ └── leaflet.js │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── screen-reader.less │ │ ├── stacked.less │ │ └── variables.less │ ├── loginassest │ │ ├── Logo_Main.png │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── bottomfooterlogo.jpg │ │ ├── css.css │ │ ├── img-thumb.png │ │ ├── jquery-1.js │ │ ├── jquery_002.js │ │ ├── logout.png │ │ ├── perfect-scrollbar.js │ │ ├── scripts.js │ │ ├── settings.png │ │ ├── style.css │ │ └── userafterlogin.jpg │ ├── logo │ │ └── unicef_logo.gif │ ├── map_resources │ │ └── country_shape_file.json │ ├── multi-select.css │ ├── multi-select │ │ ├── jquery.multi-select.js │ │ └── multi-select.css │ ├── redips_drag_style.css │ ├── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss │ ├── success │ │ ├── css │ │ │ ├── responsive.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── font-awesome │ │ │ │ ├── css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ │ ├── fontawesome-webfont914c.eot │ │ │ │ │ ├── fontawesome-webfont914c.svg │ │ │ │ │ ├── fontawesome-webfont914c.ttf │ │ │ │ │ ├── fontawesome-webfont914c.woff │ │ │ │ │ ├── fontawesome-webfont914c.woff2 │ │ │ │ │ └── fontawesome-webfontd41d.eot │ │ │ └── revicons │ │ │ │ ├── revicons90c6.eot │ │ │ │ ├── revicons90c6.svg │ │ │ │ ├── revicons90c6.ttf │ │ │ │ └── revicons90c6.woff │ │ ├── images │ │ │ └── project │ │ │ │ ├── 1.jpg │ │ │ │ ├── 11.jpg │ │ │ │ ├── 12.png │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.png │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 8.jpg │ │ │ │ └── 9.jpg │ │ ├── index.html │ │ ├── js │ │ │ └── theme.js │ │ └── vendor │ │ │ ├── animate.css │ │ │ ├── bootstrap │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.js │ │ │ ├── fancy-box │ │ │ ├── blank.html │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_loading@2x.html │ │ │ ├── fancybox_overlay.png │ │ │ ├── fancybox_sprite.png │ │ │ ├── fancybox_sprite@2x.html │ │ │ ├── jquery.fancybox.css │ │ │ └── jquery.fancybox.pack.js │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular-2.html │ │ │ ├── glyphicons-halflings-regular-3.html │ │ │ ├── glyphicons-halflings-regular-4.html │ │ │ ├── glyphicons-halflings-regular-5.html │ │ │ ├── glyphicons-halflings-regular.html │ │ │ └── glyphicons-halflings-regulard41d.html │ │ │ ├── hover.css │ │ │ ├── jquery.2.2.3.min.js │ │ │ ├── jquery.mixitup.min.js │ │ │ └── owl-carousel │ │ │ ├── owl.carousel.css │ │ │ ├── owl.carousel.min.js │ │ │ └── owl.theme.css │ ├── toassets │ │ ├── Logo_Main.png │ │ ├── animate.css │ │ ├── assets.css │ │ ├── backto.png │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── bootstrap20-12-16.css │ │ ├── bottomfooter_logo.jpg │ │ ├── color8.css │ │ ├── conshortcodes.css │ │ ├── contentdefault.css │ │ ├── contentsty.css │ │ ├── font-awesome.css │ │ ├── instyle.css │ │ ├── jquery.js │ │ ├── jquery_002.js │ │ ├── jquery_005.js │ │ ├── light.css │ │ ├── menjs.js │ │ ├── menstyle.css │ │ ├── modernizr.js │ │ ├── preset.css │ │ ├── responsive.css │ │ ├── style_002.css │ │ └── theme.js │ └── toassets_bkp │ │ ├── Logo_Main.png │ │ ├── animate.css │ │ ├── backto.png │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── color8.css │ │ ├── font-awesome.css │ │ ├── jquery.js │ │ ├── jquery_002.js │ │ ├── jquery_005.js │ │ ├── modernizr.js │ │ ├── preset.css │ │ ├── responsive.css │ │ ├── style_002.css │ │ └── theme.js ├── templates │ ├── 400.html │ ├── 401.html │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── _multiple_options.html │ ├── accounts │ │ ├── login.html │ │ ├── password_reset_done.html │ │ ├── reset_password.html │ │ └── ussd │ │ │ └── listing_home │ ├── admin │ │ ├── base.html │ │ └── base_site.html │ ├── ag_horizontal_location_widget.html │ ├── aggregates │ │ ├── _download_filter.html │ │ ├── completion_status.html │ │ ├── completion_status_form.html │ │ ├── download_excel.html │ │ ├── download_interviewer.html │ │ ├── download_investigator.html │ │ ├── household_completion_report.html │ │ ├── household_completion_status.html │ │ └── interviewers_summary.html │ ├── base.html │ ├── base │ │ ├── block_modal.html │ │ ├── clone_modal.html │ │ ├── delete_modal.html │ │ ├── field_error.html │ │ ├── remove_modal.html │ │ └── unblock_modal.html │ ├── batches │ │ ├── assign.html │ │ ├── index.html │ │ ├── new.html │ │ ├── new_batch.html │ │ └── show.html │ ├── bland_form.html │ ├── bulk_sms │ │ └── index.html │ ├── dashboard_form.html │ ├── empty.html │ ├── enumeration_area │ │ ├── index.html │ │ └── new.html │ ├── form.html │ ├── formset.html │ ├── formula │ │ ├── _view_existing_formula_count.html │ │ ├── _view_existing_formula_percentage.html │ │ ├── new.html │ │ └── simple_indicator.html │ ├── home │ │ ├── _indicator_display.html │ │ ├── edit.html │ │ ├── index.html │ │ ├── manage_super_powers.html │ │ ├── success_story_form.html │ │ └── success_story_list.html │ ├── horizontal-formset.html │ ├── horizontal_filter_form.html │ ├── horizontal_location_widget.html │ ├── horizontal_naked_form.html │ ├── household_member │ │ ├── delete.html │ │ └── new.html │ ├── households │ │ ├── index.html │ │ ├── new.html │ │ └── show.html │ ├── indicator │ │ ├── _indicator_filter_form.html │ │ ├── _view_criteria.html │ │ ├── formulae.html │ │ ├── index.html │ │ ├── indicator_form.html │ │ ├── indicator_formula.html │ │ ├── indicator_metrics_filter.html │ │ ├── indicator_variable.html │ │ ├── indicator_variable_list.html │ │ ├── indicator_variable_modal.html │ │ ├── new.html │ │ └── simple_indicator.html │ ├── interviewers │ │ ├── _action_button.html │ │ ├── completion_summary.html │ │ ├── completion_summary_old.html │ │ ├── index.html │ │ ├── interviewer_form.html │ │ ├── show.html │ │ └── show_old.html │ ├── interviews │ │ ├── answer.html │ │ ├── completed.html │ │ ├── new.html │ │ ├── new_interview.html │ │ ├── no-ea-left.html │ │ └── no-open-survey.html │ ├── js │ │ └── batch_questions │ │ │ ├── batch_questions.js │ │ │ ├── events.js │ │ │ ├── functions.js │ │ │ ├── init.js │ │ │ └── init1.js │ ├── layout.html │ ├── layout2.html │ ├── layout22.html │ ├── location_filter.html │ ├── location_hierarchy │ │ ├── new.html │ │ └── upload.html │ ├── locations │ │ ├── enumeration_area │ │ │ └── upload.html │ │ ├── new.html │ │ ├── type │ │ │ └── new.html │ │ └── weights │ │ │ ├── error_logs.html │ │ │ ├── index.html │ │ │ ├── upload.html │ │ │ └── weights_filter_form.html │ ├── locations_filter_form.html │ ├── main │ │ ├── about.html │ │ ├── contact.html │ │ ├── discover.html │ │ ├── home_success_story_list.html │ │ └── index.html │ ├── max_display_per_page_form.html │ ├── naked_form.html │ ├── new_naked_form.html │ ├── odk │ │ ├── _question_body.xml │ │ ├── formList.xml │ │ ├── household_listing-repeat.xml │ │ ├── household_listing.xml │ │ ├── instances.xml │ │ ├── instances_xformsList.xml │ │ ├── non-response-no-repeat.xml │ │ ├── non-response.xml │ │ ├── question_set.xml │ │ ├── submission.xml │ │ ├── submission_list.html │ │ ├── survey_form-no-repeat.xml │ │ ├── survey_form.xml │ │ ├── survey_form2.xml │ │ ├── survey_form_without_house_reg.xml │ │ └── xformsList.xml │ ├── page_loader.html │ ├── page_with_table.html │ ├── question_module │ │ ├── index.html │ │ ├── new.html │ │ └── new_question_module.html │ ├── question_set │ │ ├── index.html │ │ ├── inline_new.html │ │ ├── listing_entries.html │ │ ├── new.html │ │ ├── show.html │ │ ├── view_all_data.html │ │ └── view_data.html │ ├── question_templates │ │ ├── index.html │ │ └── new.html │ ├── questions │ │ ├── _add_question.html │ │ ├── _question_filter_form.html │ │ ├── _view_question_logic.html │ │ ├── _view_question_options.html │ │ ├── batch_question.html │ │ ├── batch_questions.js2 │ │ ├── batch_questions_st.js │ │ ├── index.html │ │ ├── logic.html │ │ ├── new.html │ │ └── question_flow.html │ ├── registration │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ ├── password_reset_email.html │ │ └── password_reset_form.html │ ├── respondent_groups │ │ ├── _view_criteria.html │ │ ├── conditions.html │ │ ├── conditions │ │ │ ├── delete_condition_modal.html │ │ │ ├── index.html │ │ │ ├── new.html │ │ │ └── new_condition.html │ │ ├── index.html │ │ └── new.html │ ├── search_form.html │ ├── set_questions │ │ ├── _add_question.html │ │ ├── _qset_questions.html │ │ ├── _question_filter_form.html │ │ ├── _view_question_logic.html │ │ ├── _view_question_options.html │ │ ├── assign.html │ │ ├── batch_question.html │ │ ├── batch_questions.js2 │ │ ├── batch_questions_st.js │ │ ├── help_text.html │ │ ├── index.html │ │ ├── logic.html │ │ ├── loop.html │ │ ├── loop_question.html │ │ ├── new.html │ │ └── question_flow.html │ ├── shared │ │ └── _standard_field.html │ ├── slideshow.html │ ├── surveys │ │ ├── _view_criteria.html │ │ ├── index.html │ │ ├── new.html │ │ ├── new_survey.html │ │ ├── sampling_criterion.html │ │ └── show.html │ ├── test │ │ ├── test.xml │ │ └── test_formlist.xml │ ├── users │ │ ├── _action_button.html │ │ ├── index.html │ │ ├── new.html │ │ └── show.html │ ├── ussd │ │ ├── YO.txt │ │ ├── layout_with_page_actions.html │ │ └── simulator.html │ ├── vertical_location_widget.html │ ├── view_data_filter_form.html │ └── with_mobile_number_form.html ├── templatetags │ ├── __init__.py │ ├── chart_template_tags.py │ ├── is_mobile_number.py │ └── template_tags.py ├── tests │ ├── __init__.py │ ├── base_test.py │ ├── forms │ │ ├── __init__.py │ │ ├── test_about_us_form.py │ │ ├── test_aggregates_form.py │ │ ├── test_answers_form.py │ │ ├── test_batch_form.py │ │ ├── test_filter_form.py │ │ ├── test_indicator_form.py │ │ ├── test_investigator_form.py │ │ ├── test_location_form.py │ │ ├── test_question_logic_form.py │ │ ├── test_question_module_form.py │ │ ├── test_questions_form.py │ │ ├── test_survey_form.py │ │ └── test_users_form.py │ ├── management │ │ ├── __init__.py │ │ ├── test_import_countries.py │ │ └── test_import_locations.py │ ├── models │ │ ├── __init__.py │ │ ├── survey_base_test.py │ │ ├── test_about_us_model.py │ │ ├── test_access_channels.py │ │ ├── test_answer_access_defininition.py │ │ ├── test_answer_model.py │ │ ├── test_backend_models.py │ │ ├── test_batch_model.py │ │ ├── test_ea_model.py │ │ ├── test_indicators_model.py │ │ ├── test_interviewer_model.py │ │ ├── test_interviews_model.py │ │ ├── test_interviews_model_extra.py │ │ ├── test_location_model.py │ │ ├── test_location_weight_models.py │ │ ├── test_module_model.py │ │ ├── test_question_model.py │ │ ├── test_question_models.py │ │ ├── test_questionset_model.py │ │ ├── test_respondents_model.py │ │ ├── test_response_validation.py │ │ ├── test_survey_listing_model.py │ │ ├── test_survey_model.py │ │ └── test_user_profile_model.py │ ├── odk │ │ ├── __init__.py │ │ ├── test_odk_utils.py │ │ ├── testaudio.m4a │ │ ├── testimage.png │ │ └── testvideo.mov │ ├── online │ │ ├── __init__.py │ │ ├── test_batch_question_flow.py │ │ ├── test_listing_question_flow.py │ │ └── testimage.png │ ├── services │ │ ├── __init__.py │ │ ├── test_completion_rates_calculator.py │ │ ├── test_export_questions_service.py │ │ └── test_results_download_service.py │ ├── template_tags │ │ ├── __init__.py │ │ ├── test_charts_template_tags.py │ │ └── test_template_tags.py │ ├── test_sessions.py │ ├── utils │ │ ├── __init__.py │ │ ├── test_sms.py │ │ └── test_views_helper.py │ └── views │ │ ├── __init__.py │ │ ├── test_aggregates_view.py │ │ ├── test_batch_view.py │ │ ├── test_bulk_sms_view.py │ │ ├── test_enumeration_area_view.py │ │ ├── test_excel_download_view.py │ │ ├── test_formula_view.py │ │ ├── test_home_page_view.py │ │ ├── test_indicator_view.py │ │ ├── test_interviewer_view.py │ │ ├── test_investigator_view.py │ │ ├── test_listing_view.py │ │ ├── test_locations_view.py │ │ ├── test_question_module_views.py │ │ ├── test_question_set.py │ │ ├── test_question_template.py │ │ ├── test_respondent_group_view.py │ │ ├── test_set_questions.py │ │ ├── test_simple_indicator_view_chart.py │ │ ├── test_survey_completion.py │ │ ├── test_surveys_view.py │ │ ├── test_users_view.py │ │ └── testimage.png ├── urls.py ├── utils │ ├── __init__.py │ ├── decorators.py │ ├── logger.py │ ├── query_helper.py │ ├── sms.py │ ├── views_helper.py │ └── zip.py └── views │ ├── __init__.py │ ├── aggregates.py │ ├── batch.py │ ├── bulk_sms.py │ ├── custom_decorators.py │ ├── enumeration_area.py │ ├── excel.py │ ├── home_page.py │ ├── indicators.py │ ├── interviewer.py │ ├── locations.py │ ├── question_module.py │ ├── question_set.py │ ├── question_template.py │ ├── respondent_group.py │ ├── set_questions.py │ ├── survey_completion.py │ ├── survey_listing.py │ ├── surveys.py │ └── users.py └── usurvey-apps.yml /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/README.md -------------------------------------------------------------------------------- /administrative_divisions.csv.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/administrative_divisions.csv.example -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/config/database.yml -------------------------------------------------------------------------------- /contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/storage/my_whitenoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/contrib/storage/my_whitenoise.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docker_entrypoint.sh -------------------------------------------------------------------------------- /docker_setup_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docker_setup_linux.sh -------------------------------------------------------------------------------- /docs/add_batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/add_batch.png -------------------------------------------------------------------------------- /docs/add_interviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/add_interviewer.png -------------------------------------------------------------------------------- /docs/add_logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/add_logic.png -------------------------------------------------------------------------------- /docs/add_question_to_lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/add_question_to_lib.png -------------------------------------------------------------------------------- /docs/analysis_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/analysis_report.png -------------------------------------------------------------------------------- /docs/analysis_report_drill_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/analysis_report_drill_down.png -------------------------------------------------------------------------------- /docs/batch_questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/batch_questions.png -------------------------------------------------------------------------------- /docs/breadcrumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/breadcrumbs.png -------------------------------------------------------------------------------- /docs/completion_rates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/completion_rates.png -------------------------------------------------------------------------------- /docs/deployment_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/deployment_guide.md -------------------------------------------------------------------------------- /docs/download_spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/download_spreadsheet.png -------------------------------------------------------------------------------- /docs/ea_level_completion_rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/ea_level_completion_rate.png -------------------------------------------------------------------------------- /docs/edit_interviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/edit_interviewer.png -------------------------------------------------------------------------------- /docs/enumeration_areas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/enumeration_areas.png -------------------------------------------------------------------------------- /docs/example-ussd-code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/example-ussd-code.jpg -------------------------------------------------------------------------------- /docs/household_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/household_group.png -------------------------------------------------------------------------------- /docs/household_survey_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/household_survey_response.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/indicator_formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/indicator_formula.png -------------------------------------------------------------------------------- /docs/indicators_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/indicators_home.png -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/interviewer_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/interviewer_home.png -------------------------------------------------------------------------------- /docs/interviewer_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/interviewer_path.png -------------------------------------------------------------------------------- /docs/manage_open_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/manage_open_closed.png -------------------------------------------------------------------------------- /docs/manage_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/manage_users.png -------------------------------------------------------------------------------- /docs/map_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/map_page.png -------------------------------------------------------------------------------- /docs/mobile_money_sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/mobile_money_sheets.png -------------------------------------------------------------------------------- /docs/module_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/module_page.png -------------------------------------------------------------------------------- /docs/new_ea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/new_ea.png -------------------------------------------------------------------------------- /docs/new_survey_batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/new_survey_batch.png -------------------------------------------------------------------------------- /docs/new_survey_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/new_survey_screen.png -------------------------------------------------------------------------------- /docs/odk_collect_choose_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/odk_collect_choose_setting.png -------------------------------------------------------------------------------- /docs/odk_google_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/odk_google_play.png -------------------------------------------------------------------------------- /docs/odk_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/odk_guide.md -------------------------------------------------------------------------------- /docs/odk_select_other_platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/odk_select_other_platform.png -------------------------------------------------------------------------------- /docs/open_close_batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/open_close_batch.png -------------------------------------------------------------------------------- /docs/question_bank_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/question_bank_index.png -------------------------------------------------------------------------------- /docs/select_lib_questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/select_lib_questions.png -------------------------------------------------------------------------------- /docs/set_odk_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/set_odk_credentials.png -------------------------------------------------------------------------------- /docs/survey_batches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/survey_batches.png -------------------------------------------------------------------------------- /docs/survey_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/survey_page.png -------------------------------------------------------------------------------- /docs/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/tests.md -------------------------------------------------------------------------------- /docs/uSurvey-App-Architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/uSurvey-App-Architecture.jpg -------------------------------------------------------------------------------- /docs/uSurvey-Deployment-Architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/uSurvey-Deployment-Architecture.jpg -------------------------------------------------------------------------------- /docs/uSurvey-Software-Architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/uSurvey-Software-Architecture.jpg -------------------------------------------------------------------------------- /docs/user_manual.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/user_manual.doc -------------------------------------------------------------------------------- /docs/user_manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/user_manual.md -------------------------------------------------------------------------------- /docs/user_manual.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/user_manual.odt -------------------------------------------------------------------------------- /docs/ussd-code-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/ussd-code-example.jpg -------------------------------------------------------------------------------- /docs/ussd-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/ussd-integration.md -------------------------------------------------------------------------------- /docs/usurvey-deployment-architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/usurvey-deployment-architecture.jpg -------------------------------------------------------------------------------- /docs/usurvey_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/usurvey_home.png -------------------------------------------------------------------------------- /docs/usurvey_portal_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/docs/usurvey_portal_manual.pdf -------------------------------------------------------------------------------- /files/answerFiles/testaudio.m4a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/answerFiles/testimage.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/answerFiles/testvideo.mov: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loaders/load_ea_locations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/loaders/load_ea_locations.sh -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/manage.py -------------------------------------------------------------------------------- /media/success-stories/10_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/10_testimage.png -------------------------------------------------------------------------------- /media/success-stories/11_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/11_testimage.png -------------------------------------------------------------------------------- /media/success-stories/12_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/12_testimage.png -------------------------------------------------------------------------------- /media/success-stories/13_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/13_testimage.png -------------------------------------------------------------------------------- /media/success-stories/14_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/14_testimage.png -------------------------------------------------------------------------------- /media/success-stories/18_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/18_testimage.png -------------------------------------------------------------------------------- /media/success-stories/19_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/19_testimage.png -------------------------------------------------------------------------------- /media/success-stories/21_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/21_testimage.png -------------------------------------------------------------------------------- /media/success-stories/22_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/22_testimage.png -------------------------------------------------------------------------------- /media/success-stories/23_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/23_testimage.png -------------------------------------------------------------------------------- /media/success-stories/25_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/25_testimage.png -------------------------------------------------------------------------------- /media/success-stories/27_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/27_testimage.png -------------------------------------------------------------------------------- /media/success-stories/28_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/28_testimage.png -------------------------------------------------------------------------------- /media/success-stories/30_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/30_testimage.png -------------------------------------------------------------------------------- /media/success-stories/33_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/33_testimage.png -------------------------------------------------------------------------------- /media/success-stories/35_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/35_testimage.png -------------------------------------------------------------------------------- /media/success-stories/38_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/38_testimage.png -------------------------------------------------------------------------------- /media/success-stories/39_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/39_testimage.png -------------------------------------------------------------------------------- /media/success-stories/3_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/3_testimage.png -------------------------------------------------------------------------------- /media/success-stories/41_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/41_testimage.png -------------------------------------------------------------------------------- /media/success-stories/44_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/44_testimage.png -------------------------------------------------------------------------------- /media/success-stories/47_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/47_testimage.png -------------------------------------------------------------------------------- /media/success-stories/48_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/48_testimage.png -------------------------------------------------------------------------------- /media/success-stories/49_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/49_testimage.png -------------------------------------------------------------------------------- /media/success-stories/4_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/4_testimage.png -------------------------------------------------------------------------------- /media/success-stories/50_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/50_testimage.png -------------------------------------------------------------------------------- /media/success-stories/56_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/56_testimage.png -------------------------------------------------------------------------------- /media/success-stories/57_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/57_testimage.png -------------------------------------------------------------------------------- /media/success-stories/58_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/58_testimage.png -------------------------------------------------------------------------------- /media/success-stories/62_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/62_testimage.png -------------------------------------------------------------------------------- /media/success-stories/66_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/66_testimage.png -------------------------------------------------------------------------------- /media/success-stories/67_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/67_testimage.png -------------------------------------------------------------------------------- /media/success-stories/69_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/69_testimage.png -------------------------------------------------------------------------------- /media/success-stories/73_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/73_testimage.png -------------------------------------------------------------------------------- /media/success-stories/74_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/74_testimage.png -------------------------------------------------------------------------------- /media/success-stories/77_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/77_testimage.png -------------------------------------------------------------------------------- /media/success-stories/80_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/80_testimage.png -------------------------------------------------------------------------------- /media/success-stories/85_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/85_testimage.png -------------------------------------------------------------------------------- /media/success-stories/90_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/90_testimage.png -------------------------------------------------------------------------------- /media/success-stories/93_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/93_testimage.png -------------------------------------------------------------------------------- /media/success-stories/98_testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/media/success-stories/98_testimage.png -------------------------------------------------------------------------------- /mics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/mics/__init__.py -------------------------------------------------------------------------------- /mics/include/python2.7: -------------------------------------------------------------------------------- 1 | /usr/include/python2.7 -------------------------------------------------------------------------------- /mics/local/__init__.py: -------------------------------------------------------------------------------- 1 | /home/manish/projects/uSurvey/mics/mics/__init__.py -------------------------------------------------------------------------------- /mics/local/include: -------------------------------------------------------------------------------- 1 | /home/manish/projects/uSurvey/mics/mics/include -------------------------------------------------------------------------------- /mics/local/settings.py: -------------------------------------------------------------------------------- 1 | /home/manish/projects/uSurvey/mics/mics/settings.py -------------------------------------------------------------------------------- /mics/local/snap-ci: -------------------------------------------------------------------------------- 1 | /home/manish/projects/uSurvey/mics/mics/snap-ci -------------------------------------------------------------------------------- /mics/local/testsettings.py: -------------------------------------------------------------------------------- 1 | /home/manish/projects/uSurvey/mics/mics/testsettings.py -------------------------------------------------------------------------------- /mics/local/travis-settings.py: -------------------------------------------------------------------------------- 1 | /home/manish/projects/uSurvey/mics/mics/travis-settings.py -------------------------------------------------------------------------------- /mics/local/urls.py: -------------------------------------------------------------------------------- 1 | /home/manish/projects/uSurvey/mics/mics/urls.py -------------------------------------------------------------------------------- /mics/local/wsgi.py: -------------------------------------------------------------------------------- 1 | /home/manish/projects/uSurvey/mics/mics/wsgi.py -------------------------------------------------------------------------------- /mics/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/mics/settings.py -------------------------------------------------------------------------------- /mics/snap-ci/ft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/mics/snap-ci/ft.sh -------------------------------------------------------------------------------- /mics/snap-ci/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/mics/snap-ci/setup.sh -------------------------------------------------------------------------------- /mics/snap-ci/snap-settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/mics/snap-ci/snap-settings.py -------------------------------------------------------------------------------- /mics/snap-ci/ut.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/mics/snap-ci/ut.sh -------------------------------------------------------------------------------- /mics/travis-settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/mics/travis-settings.py -------------------------------------------------------------------------------- /mics/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/mics/urls.py -------------------------------------------------------------------------------- /mics/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/mics/wsgi.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pip-freeze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/pip-freeze.txt -------------------------------------------------------------------------------- /pip-requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/pip-requires.txt -------------------------------------------------------------------------------- /screenshots/.gitignore: -------------------------------------------------------------------------------- 1 | *.png -------------------------------------------------------------------------------- /snap-settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/snap-settings.py -------------------------------------------------------------------------------- /supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/supervisord.conf -------------------------------------------------------------------------------- /survey/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/context_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/context_processor.py -------------------------------------------------------------------------------- /survey/features/Batch-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/Batch-steps.py -------------------------------------------------------------------------------- /survey/features/Batch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/Batch.feature -------------------------------------------------------------------------------- /survey/features/Layout.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/Layout.feature -------------------------------------------------------------------------------- /survey/features/Question-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/Question-steps.py -------------------------------------------------------------------------------- /survey/features/Questions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/Questions.feature -------------------------------------------------------------------------------- /survey/features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/features/about_page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/about_page.feature -------------------------------------------------------------------------------- /survey/features/about_us_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/about_us_steps.py -------------------------------------------------------------------------------- /survey/features/aggregates-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/aggregates-steps.py -------------------------------------------------------------------------------- /survey/features/aggregates.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/aggregates.feature -------------------------------------------------------------------------------- /survey/features/bulksms-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/bulksms-steps.py -------------------------------------------------------------------------------- /survey/features/bulksms.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/bulksms.feature -------------------------------------------------------------------------------- /survey/features/ea.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/ea.feature -------------------------------------------------------------------------------- /survey/features/ea_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/ea_steps.py -------------------------------------------------------------------------------- /survey/features/home_page-step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/home_page-step.py -------------------------------------------------------------------------------- /survey/features/home_page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/home_page.feature -------------------------------------------------------------------------------- /survey/features/household_member-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/household_member-steps.py -------------------------------------------------------------------------------- /survey/features/household_member.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/household_member.feature -------------------------------------------------------------------------------- /survey/features/households-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/households-steps.py -------------------------------------------------------------------------------- /survey/features/households.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/households.feature -------------------------------------------------------------------------------- /survey/features/index-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/index-steps.py -------------------------------------------------------------------------------- /survey/features/indicators-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/indicators-steps.py -------------------------------------------------------------------------------- /survey/features/indicators.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/indicators.feature -------------------------------------------------------------------------------- /survey/features/investigators-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/investigators-steps.py -------------------------------------------------------------------------------- /survey/features/investigators.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/investigators.feature -------------------------------------------------------------------------------- /survey/features/layout-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/layout-steps.py -------------------------------------------------------------------------------- /survey/features/location_weights.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/location_weights.feature -------------------------------------------------------------------------------- /survey/features/location_weights_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/location_weights_steps.py -------------------------------------------------------------------------------- /survey/features/login-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/login-steps.py -------------------------------------------------------------------------------- /survey/features/login.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/login.feature -------------------------------------------------------------------------------- /survey/features/page_objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/features/page_objects/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/page_objects/accounts.py -------------------------------------------------------------------------------- /survey/features/page_objects/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/page_objects/base.py -------------------------------------------------------------------------------- /survey/features/page_objects/batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/page_objects/batches.py -------------------------------------------------------------------------------- /survey/features/page_objects/ea.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/features/page_objects/question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/page_objects/question.py -------------------------------------------------------------------------------- /survey/features/page_objects/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/page_objects/root.py -------------------------------------------------------------------------------- /survey/features/page_objects/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/page_objects/rules.py -------------------------------------------------------------------------------- /survey/features/page_objects/surveys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/page_objects/surveys.py -------------------------------------------------------------------------------- /survey/features/page_objects/uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/page_objects/uploads.py -------------------------------------------------------------------------------- /survey/features/page_objects/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/page_objects/users.py -------------------------------------------------------------------------------- /survey/features/page_objects/weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/page_objects/weights.py -------------------------------------------------------------------------------- /survey/features/permissions-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/permissions-steps.py -------------------------------------------------------------------------------- /survey/features/permissions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/permissions.feature -------------------------------------------------------------------------------- /survey/features/question_module-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/question_module-steps.py -------------------------------------------------------------------------------- /survey/features/question_module.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/question_module.feature -------------------------------------------------------------------------------- /survey/features/rule_to_batch-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/rule_to_batch-steps.py -------------------------------------------------------------------------------- /survey/features/rules_to_batch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/rules_to_batch.feature -------------------------------------------------------------------------------- /survey/features/survey.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/survey.feature -------------------------------------------------------------------------------- /survey/features/survey_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/survey_steps.py -------------------------------------------------------------------------------- /survey/features/upload_location-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/upload_location-steps.py -------------------------------------------------------------------------------- /survey/features/upload_locations.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/upload_locations.feature -------------------------------------------------------------------------------- /survey/features/user_settings-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/user_settings-steps.py -------------------------------------------------------------------------------- /survey/features/user_settings.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/user_settings.feature -------------------------------------------------------------------------------- /survey/features/users-steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/users-steps.py -------------------------------------------------------------------------------- /survey/features/users.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/features/users.feature -------------------------------------------------------------------------------- /survey/fixtures/contenttypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/fixtures/contenttypes.json -------------------------------------------------------------------------------- /survey/fixtures/enumeration_area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/fixtures/enumeration_area.json -------------------------------------------------------------------------------- /survey/fixtures/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/fixtures/groups.json -------------------------------------------------------------------------------- /survey/fixtures/location_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/fixtures/location_types.json -------------------------------------------------------------------------------- /survey/fixtures/locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/fixtures/locations.json -------------------------------------------------------------------------------- /survey/fixtures/permisions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/fixtures/permisions.json -------------------------------------------------------------------------------- /survey/fixtures/permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/fixtures/permissions.json -------------------------------------------------------------------------------- /survey/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/forms/aboutus_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/aboutus_form.py -------------------------------------------------------------------------------- /survey/forms/aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/aggregates.py -------------------------------------------------------------------------------- /survey/forms/answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/answer.py -------------------------------------------------------------------------------- /survey/forms/enumeration_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/enumeration_area.py -------------------------------------------------------------------------------- /survey/forms/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/filters.py -------------------------------------------------------------------------------- /survey/forms/form_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/form_helper.py -------------------------------------------------------------------------------- /survey/forms/indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/indicator.py -------------------------------------------------------------------------------- /survey/forms/interviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/interviewer.py -------------------------------------------------------------------------------- /survey/forms/location_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/location_details.py -------------------------------------------------------------------------------- /survey/forms/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/logic.py -------------------------------------------------------------------------------- /survey/forms/password_mgt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/password_mgt.py -------------------------------------------------------------------------------- /survey/forms/question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/question.py -------------------------------------------------------------------------------- /survey/forms/question_module_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/question_module_form.py -------------------------------------------------------------------------------- /survey/forms/question_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/question_set.py -------------------------------------------------------------------------------- /survey/forms/question_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/question_template.py -------------------------------------------------------------------------------- /survey/forms/respondent_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/respondent_group.py -------------------------------------------------------------------------------- /survey/forms/response_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/response_validation.py -------------------------------------------------------------------------------- /survey/forms/surveys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/surveys.py -------------------------------------------------------------------------------- /survey/forms/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/users.py -------------------------------------------------------------------------------- /survey/forms/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/validation.py -------------------------------------------------------------------------------- /survey/forms/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/forms/widgets.py -------------------------------------------------------------------------------- /survey/interviewer_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/interviewer_configs.py -------------------------------------------------------------------------------- /survey/interviewer_configs.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/interviewer_configs.py.example -------------------------------------------------------------------------------- /survey/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [''] 2 | -------------------------------------------------------------------------------- /survey/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/migrations/0001_initial.py -------------------------------------------------------------------------------- /survey/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/__init__.py -------------------------------------------------------------------------------- /survey/models/about_us_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/about_us_content.py -------------------------------------------------------------------------------- /survey/models/access_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/access_channels.py -------------------------------------------------------------------------------- /survey/models/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/backend.py -------------------------------------------------------------------------------- /survey/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/base.py -------------------------------------------------------------------------------- /survey/models/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/batch.py -------------------------------------------------------------------------------- /survey/models/batch_questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/batch_questions.py -------------------------------------------------------------------------------- /survey/models/enumeration_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/enumeration_area.py -------------------------------------------------------------------------------- /survey/models/generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/generics.py -------------------------------------------------------------------------------- /survey/models/helper_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/helper_constants.py -------------------------------------------------------------------------------- /survey/models/indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/indicators.py -------------------------------------------------------------------------------- /survey/models/interviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/interviewer.py -------------------------------------------------------------------------------- /survey/models/interviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/interviews.py -------------------------------------------------------------------------------- /survey/models/location_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/location_weight.py -------------------------------------------------------------------------------- /survey/models/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/locations.py -------------------------------------------------------------------------------- /survey/models/odk_submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/odk_submission.py -------------------------------------------------------------------------------- /survey/models/question_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/question_module.py -------------------------------------------------------------------------------- /survey/models/question_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/question_templates.py -------------------------------------------------------------------------------- /survey/models/questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/questions.py -------------------------------------------------------------------------------- /survey/models/respondents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/respondents.py -------------------------------------------------------------------------------- /survey/models/response_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/response_validation.py -------------------------------------------------------------------------------- /survey/models/survey_listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/survey_listing.py -------------------------------------------------------------------------------- /survey/models/surveys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/surveys.py -------------------------------------------------------------------------------- /survey/models/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/models/users.py -------------------------------------------------------------------------------- /survey/odk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/odk/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/odk/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/odk/utils/log.py -------------------------------------------------------------------------------- /survey/odk/utils/odk_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/odk/utils/odk_helper.py -------------------------------------------------------------------------------- /survey/odk/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/odk/views.py -------------------------------------------------------------------------------- /survey/online/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/online/__init__.py -------------------------------------------------------------------------------- /survey/online/online_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/online/online_handler.py -------------------------------------------------------------------------------- /survey/online/simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/online/simulator.py -------------------------------------------------------------------------------- /survey/online/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/online/utils.py -------------------------------------------------------------------------------- /survey/online/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/online/views.py -------------------------------------------------------------------------------- /survey/services/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'mnandri' 2 | -------------------------------------------------------------------------------- /survey/services/export_interviewers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/services/export_interviewers.py -------------------------------------------------------------------------------- /survey/services/export_interviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/services/export_interviews.py -------------------------------------------------------------------------------- /survey/services/export_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/services/export_model.py -------------------------------------------------------------------------------- /survey/services/export_questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/services/export_questions.py -------------------------------------------------------------------------------- /survey/static/asset/css/_notes/dwsync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/asset/css/_notes/dwsync.xml -------------------------------------------------------------------------------- /survey/static/asset/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/asset/css/bootstrap.min.css -------------------------------------------------------------------------------- /survey/static/asset/js/_notes/dwsync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/asset/js/_notes/dwsync.xml -------------------------------------------------------------------------------- /survey/static/asset/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/asset/js/bootstrap.min.js -------------------------------------------------------------------------------- /survey/static/assets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/bootstrap.css -------------------------------------------------------------------------------- /survey/static/assets/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/bootstrap.js -------------------------------------------------------------------------------- /survey/static/assets/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/css/font-awesome.css -------------------------------------------------------------------------------- /survey/static/assets/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/font-awesome.css -------------------------------------------------------------------------------- /survey/static/assets/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/fonts.css -------------------------------------------------------------------------------- /survey/static/assets/formstyleres.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/formstyleres.css -------------------------------------------------------------------------------- /survey/static/assets/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/images/search.png -------------------------------------------------------------------------------- /survey/static/assets/jquery-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/jquery-2.js -------------------------------------------------------------------------------- /survey/static/assets/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/less/animated.less -------------------------------------------------------------------------------- /survey/static/assets/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/less/core.less -------------------------------------------------------------------------------- /survey/static/assets/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/less/icons.less -------------------------------------------------------------------------------- /survey/static/assets/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/less/larger.less -------------------------------------------------------------------------------- /survey/static/assets/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/less/list.less -------------------------------------------------------------------------------- /survey/static/assets/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/less/mixins.less -------------------------------------------------------------------------------- /survey/static/assets/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/less/path.less -------------------------------------------------------------------------------- /survey/static/assets/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/less/stacked.less -------------------------------------------------------------------------------- /survey/static/assets/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/less/variables.less -------------------------------------------------------------------------------- /survey/static/assets/rougj/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/rougj/bootstrap.css -------------------------------------------------------------------------------- /survey/static/assets/rougj/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/rougj/bootstrap.js -------------------------------------------------------------------------------- /survey/static/assets/rougj/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/rougj/fonts.css -------------------------------------------------------------------------------- /survey/static/assets/rougj/jquery-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/rougj/jquery-2.js -------------------------------------------------------------------------------- /survey/static/assets/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/scss/_animated.scss -------------------------------------------------------------------------------- /survey/static/assets/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/scss/_core.scss -------------------------------------------------------------------------------- /survey/static/assets/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/scss/_icons.scss -------------------------------------------------------------------------------- /survey/static/assets/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/scss/_larger.scss -------------------------------------------------------------------------------- /survey/static/assets/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/scss/_list.scss -------------------------------------------------------------------------------- /survey/static/assets/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/scss/_mixins.scss -------------------------------------------------------------------------------- /survey/static/assets/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/scss/_path.scss -------------------------------------------------------------------------------- /survey/static/assets/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/scss/_stacked.scss -------------------------------------------------------------------------------- /survey/static/assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/scss/_variables.scss -------------------------------------------------------------------------------- /survey/static/assets/usur.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/assets/usur.css -------------------------------------------------------------------------------- /survey/static/attrchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/attrchange.js -------------------------------------------------------------------------------- /survey/static/attrchange_ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/attrchange_ext.js -------------------------------------------------------------------------------- /survey/static/banassets/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/banassets/arrows.png -------------------------------------------------------------------------------- /survey/static/banassets/arrowsb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/banassets/arrowsb.png -------------------------------------------------------------------------------- /survey/static/banassets/banstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/banassets/banstyle.css -------------------------------------------------------------------------------- /survey/static/banassets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/banassets/image1.png -------------------------------------------------------------------------------- /survey/static/banassets/image1bup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/banassets/image1bup.png -------------------------------------------------------------------------------- /survey/static/banassets/images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/banassets/images/arrows.png -------------------------------------------------------------------------------- /survey/static/banassets/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/banassets/images/map.png -------------------------------------------------------------------------------- /survey/static/banassets/images/mapbup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/banassets/images/mapbup.png -------------------------------------------------------------------------------- /survey/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/bootstrap.min.css -------------------------------------------------------------------------------- /survey/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /survey/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /survey/static/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /survey/static/chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /survey/static/chosen/chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/chosen/chosen.css -------------------------------------------------------------------------------- /survey/static/chosen/chosen.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/chosen/chosen.jquery.js -------------------------------------------------------------------------------- /survey/static/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /survey/static/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /survey/static/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/README.md -------------------------------------------------------------------------------- /survey/static/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /survey/static/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/build-config.js -------------------------------------------------------------------------------- /survey/static/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /survey/static/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/config.js -------------------------------------------------------------------------------- /survey/static/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/contents.css -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/af.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/da.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/de.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/el.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/en.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/es.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/et.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/he.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/id.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/is.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/it.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/km.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/no.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/si.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/th.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /survey/static/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /survey/static/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /survey/static/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/ckeditor/styles.js -------------------------------------------------------------------------------- /survey/static/css/_notes/dwsync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/_notes/dwsync.xml -------------------------------------------------------------------------------- /survey/static/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/animate.css -------------------------------------------------------------------------------- /survey/static/css/application.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/application.less -------------------------------------------------------------------------------- /survey/static/css/awesomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/awesomplete.css -------------------------------------------------------------------------------- /survey/static/css/box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/box.css -------------------------------------------------------------------------------- /survey/static/css/colors/beige.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/colors/beige.css -------------------------------------------------------------------------------- /survey/static/css/colors/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/colors/blue.css -------------------------------------------------------------------------------- /survey/static/css/colors/cyan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/colors/cyan.css -------------------------------------------------------------------------------- /survey/static/css/colors/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/colors/green.css -------------------------------------------------------------------------------- /survey/static/css/colors/jade.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/colors/jade.css -------------------------------------------------------------------------------- /survey/static/css/colors/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/colors/orange.css -------------------------------------------------------------------------------- /survey/static/css/colors/peach.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/colors/peach.css -------------------------------------------------------------------------------- /survey/static/css/colors/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/colors/pink.css -------------------------------------------------------------------------------- /survey/static/css/colors/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/colors/purple.css -------------------------------------------------------------------------------- /survey/static/css/colors/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/colors/red.css -------------------------------------------------------------------------------- /survey/static/css/colors/sky-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/colors/sky-blue.css -------------------------------------------------------------------------------- /survey/static/css/colors/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/colors/yellow.css -------------------------------------------------------------------------------- /survey/static/css/dataTables.jqueryui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/dataTables.jqueryui.css -------------------------------------------------------------------------------- /survey/static/css/education-center.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/education-center.css -------------------------------------------------------------------------------- /survey/static/css/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/flexslider.css -------------------------------------------------------------------------------- /survey/static/css/flipclock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/flipclock.css -------------------------------------------------------------------------------- /survey/static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/font-awesome.css -------------------------------------------------------------------------------- /survey/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /survey/static/css/formoid-solid-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/formoid-solid-blue.css -------------------------------------------------------------------------------- /survey/static/css/formset-extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/formset-extra.css -------------------------------------------------------------------------------- /survey/static/css/images/page-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/images/page-loader.gif -------------------------------------------------------------------------------- /survey/static/css/instyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/instyle.css -------------------------------------------------------------------------------- /survey/static/css/internalpages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/internalpages.css -------------------------------------------------------------------------------- /survey/static/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/jquery-ui.css -------------------------------------------------------------------------------- /survey/static/css/jquery-ui2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/jquery-ui2.css -------------------------------------------------------------------------------- /survey/static/css/jquery-uis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/jquery-uis.css -------------------------------------------------------------------------------- /survey/static/css/jquery.shadow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/jquery.shadow.css -------------------------------------------------------------------------------- /survey/static/css/loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/loader.css -------------------------------------------------------------------------------- /survey/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/main.css -------------------------------------------------------------------------------- /survey/static/css/mprogress.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/mprogress.min.css -------------------------------------------------------------------------------- /survey/static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/normalize.css -------------------------------------------------------------------------------- /survey/static/css/redips_drag_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/redips_drag_style.css -------------------------------------------------------------------------------- /survey/static/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/responsive.css -------------------------------------------------------------------------------- /survey/static/css/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/select2-spinner.gif -------------------------------------------------------------------------------- /survey/static/css/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/select2.css -------------------------------------------------------------------------------- /survey/static/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/select2.min.css -------------------------------------------------------------------------------- /survey/static/css/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/select2.png -------------------------------------------------------------------------------- /survey/static/css/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/select2x2.png -------------------------------------------------------------------------------- /survey/static/css/slicknav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/slicknav.css -------------------------------------------------------------------------------- /survey/static/css/slidebars-extended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/slidebars-extended.js -------------------------------------------------------------------------------- /survey/static/css/slidebars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/slidebars.css -------------------------------------------------------------------------------- /survey/static/css/slidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/slidebars.js -------------------------------------------------------------------------------- /survey/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/style.css -------------------------------------------------------------------------------- /survey/static/css/style_hmm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/style_hmm.css -------------------------------------------------------------------------------- /survey/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/styles.css -------------------------------------------------------------------------------- /survey/static/css/topNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css/topNav.css -------------------------------------------------------------------------------- /survey/static/css1/application.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css1/application.less -------------------------------------------------------------------------------- /survey/static/css1/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/css1/jquery-ui.css -------------------------------------------------------------------------------- /survey/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /survey/static/formoid/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid/.htaccess -------------------------------------------------------------------------------- /survey/static/formoid/form.formoid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid/form.formoid -------------------------------------------------------------------------------- /survey/static/formoid/formoid.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid/formoid.eot -------------------------------------------------------------------------------- /survey/static/formoid/formoid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid/formoid.svg -------------------------------------------------------------------------------- /survey/static/formoid/formoid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid/formoid.ttf -------------------------------------------------------------------------------- /survey/static/formoid/formoid.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid/formoid.woff -------------------------------------------------------------------------------- /survey/static/formoid/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid/icons.eot -------------------------------------------------------------------------------- /survey/static/formoid/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid/icons.svg -------------------------------------------------------------------------------- /survey/static/formoid/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid/icons.ttf -------------------------------------------------------------------------------- /survey/static/formoid/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid/icons.woff -------------------------------------------------------------------------------- /survey/static/formoid/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid/jquery.min.js -------------------------------------------------------------------------------- /survey/static/formoid1/formoid.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid1/formoid.eot -------------------------------------------------------------------------------- /survey/static/formoid1/formoid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid1/formoid.svg -------------------------------------------------------------------------------- /survey/static/formoid1/formoid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid1/formoid.ttf -------------------------------------------------------------------------------- /survey/static/formoid1/formoid.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid1/formoid.woff -------------------------------------------------------------------------------- /survey/static/formoid1/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid1/icons.eot -------------------------------------------------------------------------------- /survey/static/formoid1/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid1/icons.svg -------------------------------------------------------------------------------- /survey/static/formoid1/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid1/icons.ttf -------------------------------------------------------------------------------- /survey/static/formoid1/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid1/icons.woff -------------------------------------------------------------------------------- /survey/static/formoid1/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/formoid1/jquery.min.js -------------------------------------------------------------------------------- /survey/static/images/_notes/dwsync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/_notes/dwsync.xml -------------------------------------------------------------------------------- /survey/static/images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/arrows.png -------------------------------------------------------------------------------- /survey/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/favicon.png -------------------------------------------------------------------------------- /survey/static/images/faviconbak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/faviconbak.png -------------------------------------------------------------------------------- /survey/static/images/footer-uSurvey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/footer-uSurvey.png -------------------------------------------------------------------------------- /survey/static/images/icon_bar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/icon_bar2.png -------------------------------------------------------------------------------- /survey/static/images/icon_bar24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/icon_bar24.png -------------------------------------------------------------------------------- /survey/static/images/icon_bar2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/icon_bar2_2.png -------------------------------------------------------------------------------- /survey/static/images/icon_bar2_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/icon_bar2_22.png -------------------------------------------------------------------------------- /survey/static/images/icon_bar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/icon_bar3.png -------------------------------------------------------------------------------- /survey/static/images/icon_bar_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/icon_bar_red.png -------------------------------------------------------------------------------- /survey/static/images/login_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/login_icon.png -------------------------------------------------------------------------------- /survey/static/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/map.png -------------------------------------------------------------------------------- /survey/static/images/oupput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/oupput.png -------------------------------------------------------------------------------- /survey/static/images/question.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/question.jpg -------------------------------------------------------------------------------- /survey/static/images/real.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/real.png -------------------------------------------------------------------------------- /survey/static/images/slide-01-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/slide-01-bg.jpg -------------------------------------------------------------------------------- /survey/static/images/slide-02-bg--.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/slide-02-bg--.jpg -------------------------------------------------------------------------------- /survey/static/images/slide-03-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/slide-03-bg.jpg -------------------------------------------------------------------------------- /survey/static/images/slider/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/slider/bg1.jpg -------------------------------------------------------------------------------- /survey/static/images/slider/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/slider/bg2.jpg -------------------------------------------------------------------------------- /survey/static/images/slider3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/slider3.png -------------------------------------------------------------------------------- /survey/static/images/uSurvey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/uSurvey.png -------------------------------------------------------------------------------- /survey/static/images/userICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/userICON.png -------------------------------------------------------------------------------- /survey/static/images/userICON_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/userICON_admin.png -------------------------------------------------------------------------------- /survey/static/images/ussd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/images/ussd.png -------------------------------------------------------------------------------- /survey/static/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/1.jpg -------------------------------------------------------------------------------- /survey/static/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/2.jpg -------------------------------------------------------------------------------- /survey/static/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/3.jpg -------------------------------------------------------------------------------- /survey/static/img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/4.jpg -------------------------------------------------------------------------------- /survey/static/img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/5.jpg -------------------------------------------------------------------------------- /survey/static/img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/6.jpg -------------------------------------------------------------------------------- /survey/static/img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/7.jpg -------------------------------------------------------------------------------- /survey/static/img/L1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/L1.jpg -------------------------------------------------------------------------------- /survey/static/img/L1_old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/L1_old.jpg -------------------------------------------------------------------------------- /survey/static/img/L2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/L2.jpg -------------------------------------------------------------------------------- /survey/static/img/L2_old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/L2_old.jpg -------------------------------------------------------------------------------- /survey/static/img/L3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/L3.jpg -------------------------------------------------------------------------------- /survey/static/img/L3_old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/L3_old.jpg -------------------------------------------------------------------------------- /survey/static/img/L4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/L4.jpg -------------------------------------------------------------------------------- /survey/static/img/L4_old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/L4_old.jpg -------------------------------------------------------------------------------- /survey/static/img/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/add.png -------------------------------------------------------------------------------- /survey/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /survey/static/img/dark_embroidery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/dark_embroidery.png -------------------------------------------------------------------------------- /survey/static/img/delete-icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/delete-icon -------------------------------------------------------------------------------- /survey/static/img/delete-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/delete-icon.png -------------------------------------------------------------------------------- /survey/static/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/delete.png -------------------------------------------------------------------------------- /survey/static/img/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/drag.png -------------------------------------------------------------------------------- /survey/static/img/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/edit.png -------------------------------------------------------------------------------- /survey/static/img/helpuganda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/helpuganda.jpg -------------------------------------------------------------------------------- /survey/static/img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/home.png -------------------------------------------------------------------------------- /survey/static/img/imgmor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/imgmor.png -------------------------------------------------------------------------------- /survey/static/img/imgsam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/imgsam.png -------------------------------------------------------------------------------- /survey/static/img/imgussd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/imgussd.png -------------------------------------------------------------------------------- /survey/static/img/iphone-sim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/iphone-sim.png -------------------------------------------------------------------------------- /survey/static/img/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/iphone.png -------------------------------------------------------------------------------- /survey/static/img/iphonebup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/iphonebup.png -------------------------------------------------------------------------------- /survey/static/img/iphonebup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/iphonebup2.png -------------------------------------------------------------------------------- /survey/static/img/iphonebup3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/iphonebup3.png -------------------------------------------------------------------------------- /survey/static/img/learnmore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/learnmore.png -------------------------------------------------------------------------------- /survey/static/img/loader-32x/loader1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/loader-32x/loader1.gif -------------------------------------------------------------------------------- /survey/static/img/loader-32x/loader2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/loader-32x/loader2.gif -------------------------------------------------------------------------------- /survey/static/img/loader-32x/loader3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/loader-32x/loader3.gif -------------------------------------------------------------------------------- /survey/static/img/loader-32x/loader4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/loader-32x/loader4.gif -------------------------------------------------------------------------------- /survey/static/img/loader-32x/loader5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/loader-32x/loader5.gif -------------------------------------------------------------------------------- /survey/static/img/loader-32x/loader6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/loader-32x/loader6.gif -------------------------------------------------------------------------------- /survey/static/img/loader-32x/loader7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/loader-32x/loader7.gif -------------------------------------------------------------------------------- /survey/static/img/question.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/question.jpg -------------------------------------------------------------------------------- /survey/static/img/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/switch.png -------------------------------------------------------------------------------- /survey/static/img/symphony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/symphony.png -------------------------------------------------------------------------------- /survey/static/img/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/twitter.png -------------------------------------------------------------------------------- /survey/static/img/u1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/u1.jpg -------------------------------------------------------------------------------- /survey/static/img/u10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/u10.jpg -------------------------------------------------------------------------------- /survey/static/img/u2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/u2.jpg -------------------------------------------------------------------------------- /survey/static/img/u3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/u3.jpg -------------------------------------------------------------------------------- /survey/static/img/u3_new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/u3_new.jpg -------------------------------------------------------------------------------- /survey/static/img/u4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/u4.jpg -------------------------------------------------------------------------------- /survey/static/img/u50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/u50.jpg -------------------------------------------------------------------------------- /survey/static/img/uSurvey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/uSurvey.png -------------------------------------------------------------------------------- /survey/static/img/uSurvey_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/uSurvey_old.png -------------------------------------------------------------------------------- /survey/static/img/uganda_crane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/uganda_crane.jpg -------------------------------------------------------------------------------- /survey/static/img/unews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/unews.png -------------------------------------------------------------------------------- /survey/static/img/uniceflogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/img/uniceflogo.png -------------------------------------------------------------------------------- /survey/static/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /survey/static/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/jquery-ui.css -------------------------------------------------------------------------------- /survey/static/jquery-ui2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/jquery-ui2.css -------------------------------------------------------------------------------- /survey/static/jquery.dataTables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/jquery.dataTables.css -------------------------------------------------------------------------------- /survey/static/jquery.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/jquery.dataTables.min.css -------------------------------------------------------------------------------- /survey/static/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/jquery.dataTables.min.js -------------------------------------------------------------------------------- /survey/static/jquerysctipttop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/jquerysctipttop.css -------------------------------------------------------------------------------- /survey/static/js/_notes/dwsync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/_notes/dwsync.xml -------------------------------------------------------------------------------- /survey/static/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/application.js -------------------------------------------------------------------------------- /survey/static/js/awesomplete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/awesomplete.min.js -------------------------------------------------------------------------------- /survey/static/js/background.cycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/background.cycle.js -------------------------------------------------------------------------------- /survey/static/js/background.cycle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/background.cycle.min.js -------------------------------------------------------------------------------- /survey/static/js/batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/batch.js -------------------------------------------------------------------------------- /survey/static/js/batch_questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/batch_questions.js -------------------------------------------------------------------------------- /survey/static/js/bulk-sms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/bulk-sms.js -------------------------------------------------------------------------------- /survey/static/js/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/contact.js -------------------------------------------------------------------------------- /survey/static/js/count-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/count-to.js -------------------------------------------------------------------------------- /survey/static/js/cytoscapejs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/cytoscapejs/.DS_Store -------------------------------------------------------------------------------- /survey/static/js/cytoscapejs/cytoscape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/cytoscapejs/cytoscape.js -------------------------------------------------------------------------------- /survey/static/js/cytoscapejs/dagre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/cytoscapejs/dagre.js -------------------------------------------------------------------------------- /survey/static/js/cytoscapejs/dagre.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/cytoscapejs/dagre.min.js -------------------------------------------------------------------------------- /survey/static/js/cytoscapejs/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/cytoscapejs/jquery.js -------------------------------------------------------------------------------- /survey/static/js/dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/dataTables.bootstrap.js -------------------------------------------------------------------------------- /survey/static/js/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/download.js -------------------------------------------------------------------------------- /survey/static/js/ea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/ea.js -------------------------------------------------------------------------------- /survey/static/js/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/exporting.js -------------------------------------------------------------------------------- /survey/static/js/flipclock.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/flipclock.min.js -------------------------------------------------------------------------------- /survey/static/js/formula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/formula.js -------------------------------------------------------------------------------- /survey/static/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/highcharts.js -------------------------------------------------------------------------------- /survey/static/js/household.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/household.js -------------------------------------------------------------------------------- /survey/static/js/indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/indicator.js -------------------------------------------------------------------------------- /survey/static/js/investigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/investigator.js -------------------------------------------------------------------------------- /survey/static/js/jquery-2.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery-2.0.0.min.js -------------------------------------------------------------------------------- /survey/static/js/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /survey/static/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery-ui.js -------------------------------------------------------------------------------- /survey/static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /survey/static/js/jquery-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery-ui/index.html -------------------------------------------------------------------------------- /survey/static/js/jquery-ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery-ui/jquery-ui.css -------------------------------------------------------------------------------- /survey/static/js/jquery-ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery-ui/jquery-ui.js -------------------------------------------------------------------------------- /survey/static/js/jquery.appear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.appear.js -------------------------------------------------------------------------------- /survey/static/js/jquery.countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.countdown.js -------------------------------------------------------------------------------- /survey/static/js/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.dataTables.js -------------------------------------------------------------------------------- /survey/static/js/jquery.easypiechart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.easypiechart.js -------------------------------------------------------------------------------- /survey/static/js/jquery.fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.fitvids.js -------------------------------------------------------------------------------- /survey/static/js/jquery.formset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.formset.js -------------------------------------------------------------------------------- /survey/static/js/jquery.isotope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.isotope.js -------------------------------------------------------------------------------- /survey/static/js/jquery.isotope.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.isotope.min.js -------------------------------------------------------------------------------- /survey/static/js/jquery.lettering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.lettering.js -------------------------------------------------------------------------------- /survey/static/js/jquery.migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.migrate.js -------------------------------------------------------------------------------- /survey/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.min.js -------------------------------------------------------------------------------- /survey/static/js/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.min.map -------------------------------------------------------------------------------- /survey/static/js/jquery.min2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.min2.js -------------------------------------------------------------------------------- /survey/static/js/jquery.nicescroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.nicescroll.js -------------------------------------------------------------------------------- /survey/static/js/jquery.nicescroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.nicescroll.min.js -------------------------------------------------------------------------------- /survey/static/js/jquery.parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.parallax.js -------------------------------------------------------------------------------- /survey/static/js/jquery.slicknav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.slicknav.js -------------------------------------------------------------------------------- /survey/static/js/jquery.tablednd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.tablednd.js -------------------------------------------------------------------------------- /survey/static/js/jquery.textillate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.textillate.js -------------------------------------------------------------------------------- /survey/static/js/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.validate.js -------------------------------------------------------------------------------- /survey/static/js/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/jquery.validate.min.js -------------------------------------------------------------------------------- /survey/static/js/js-graph-it/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/js-graph-it/.DS_Store -------------------------------------------------------------------------------- /survey/static/js/js-graph-it/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/js-graph-it/license.txt -------------------------------------------------------------------------------- /survey/static/js/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/less.js -------------------------------------------------------------------------------- /survey/static/js/levels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/levels.js -------------------------------------------------------------------------------- /survey/static/js/location-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/location-widget.js -------------------------------------------------------------------------------- /survey/static/js/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/logic.js -------------------------------------------------------------------------------- /survey/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/main.js -------------------------------------------------------------------------------- /survey/static/js/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/maps.js -------------------------------------------------------------------------------- /survey/static/js/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/modernizr.js -------------------------------------------------------------------------------- /survey/static/js/modernizrr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/modernizrr.js -------------------------------------------------------------------------------- /survey/static/js/mprogress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/mprogress.min.js -------------------------------------------------------------------------------- /survey/static/js/multichoice-bar-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/multichoice-bar-chart.js -------------------------------------------------------------------------------- /survey/static/js/new_household.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/new_household.js -------------------------------------------------------------------------------- /survey/static/js/nivo-lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/nivo-lightbox.js -------------------------------------------------------------------------------- /survey/static/js/nivo-lightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/nivo-lightbox.min.js -------------------------------------------------------------------------------- /survey/static/js/numerical-bar-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/numerical-bar-chart.js -------------------------------------------------------------------------------- /survey/static/js/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/owl.carousel.js -------------------------------------------------------------------------------- /survey/static/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/owl.carousel.min.js -------------------------------------------------------------------------------- /survey/static/js/question_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/question_options.js -------------------------------------------------------------------------------- /survey/static/js/question_validation.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/static/js/questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/questions.js -------------------------------------------------------------------------------- /survey/static/js/redips_drag/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/redips_drag/header.js -------------------------------------------------------------------------------- /survey/static/js/redips_drag/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/redips_drag/script.js -------------------------------------------------------------------------------- /survey/static/js/redips_drag/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/redips_drag/style.css -------------------------------------------------------------------------------- /survey/static/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/script.js -------------------------------------------------------------------------------- /survey/static/js/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/select2.full.js -------------------------------------------------------------------------------- /survey/static/js/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/select2.js -------------------------------------------------------------------------------- /survey/static/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/select2.min.js -------------------------------------------------------------------------------- /survey/static/js/simulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/simulator.js -------------------------------------------------------------------------------- /survey/static/js/statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/statusbar.js -------------------------------------------------------------------------------- /survey/static/js/survey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/survey.js -------------------------------------------------------------------------------- /survey/static/js/survey_status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/survey_status.js -------------------------------------------------------------------------------- /survey/static/js/textcounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/textcounter.js -------------------------------------------------------------------------------- /survey/static/js/type-auto-suggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/type-auto-suggest.js -------------------------------------------------------------------------------- /survey/static/js/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/underscore.js -------------------------------------------------------------------------------- /survey/static/js/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/users.js -------------------------------------------------------------------------------- /survey/static/js/vendor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vendor/.DS_Store -------------------------------------------------------------------------------- /survey/static/js/vis/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vis/CONTRIBUTING.md -------------------------------------------------------------------------------- /survey/static/js/vis/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vis/HISTORY.md -------------------------------------------------------------------------------- /survey/static/js/vis/LICENSE-APACHE-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vis/LICENSE-APACHE-2.0 -------------------------------------------------------------------------------- /survey/static/js/vis/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vis/LICENSE-MIT -------------------------------------------------------------------------------- /survey/static/js/vis/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vis/NOTICE -------------------------------------------------------------------------------- /survey/static/js/vis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vis/README.md -------------------------------------------------------------------------------- /survey/static/js/vis/docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vis/docs/css/style.css -------------------------------------------------------------------------------- /survey/static/js/vis/docs/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vis/docs/data/index.html -------------------------------------------------------------------------------- /survey/static/js/vis/docs/img/graph3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vis/docs/img/graph3d.png -------------------------------------------------------------------------------- /survey/static/js/vis/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vis/docs/index.html -------------------------------------------------------------------------------- /survey/static/js/vis/docs/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vis/docs/js/bootstrap.js -------------------------------------------------------------------------------- /survey/static/js/vis/docs/js/docs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vis/docs/js/docs.min.js -------------------------------------------------------------------------------- /survey/static/js/vis/docs/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/js/vis/docs/js/main.js -------------------------------------------------------------------------------- /survey/static/js/vis/examples/network/data/dotLanguage/graphvizGallery/hello.gv.txt: -------------------------------------------------------------------------------- 1 | digraph G {Hello->World} -------------------------------------------------------------------------------- /survey/static/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/leaflet/images/layers.png -------------------------------------------------------------------------------- /survey/static/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /survey/static/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/leaflet/leaflet.css -------------------------------------------------------------------------------- /survey/static/leaflet/leaflet.ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/leaflet/leaflet.ie.css -------------------------------------------------------------------------------- /survey/static/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/leaflet/leaflet.js -------------------------------------------------------------------------------- /survey/static/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/animated.less -------------------------------------------------------------------------------- /survey/static/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/bordered-pulled.less -------------------------------------------------------------------------------- /survey/static/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/core.less -------------------------------------------------------------------------------- /survey/static/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/fixed-width.less -------------------------------------------------------------------------------- /survey/static/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/font-awesome.less -------------------------------------------------------------------------------- /survey/static/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/icons.less -------------------------------------------------------------------------------- /survey/static/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/larger.less -------------------------------------------------------------------------------- /survey/static/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/list.less -------------------------------------------------------------------------------- /survey/static/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/mixins.less -------------------------------------------------------------------------------- /survey/static/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/path.less -------------------------------------------------------------------------------- /survey/static/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/rotated-flipped.less -------------------------------------------------------------------------------- /survey/static/less/screen-reader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/screen-reader.less -------------------------------------------------------------------------------- /survey/static/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/stacked.less -------------------------------------------------------------------------------- /survey/static/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/less/variables.less -------------------------------------------------------------------------------- /survey/static/loginassest/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/loginassest/bootstrap.js -------------------------------------------------------------------------------- /survey/static/loginassest/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/loginassest/css.css -------------------------------------------------------------------------------- /survey/static/loginassest/jquery-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/loginassest/jquery-1.js -------------------------------------------------------------------------------- /survey/static/loginassest/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/loginassest/logout.png -------------------------------------------------------------------------------- /survey/static/loginassest/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/loginassest/scripts.js -------------------------------------------------------------------------------- /survey/static/loginassest/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/loginassest/settings.png -------------------------------------------------------------------------------- /survey/static/loginassest/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/loginassest/style.css -------------------------------------------------------------------------------- /survey/static/logo/unicef_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/logo/unicef_logo.gif -------------------------------------------------------------------------------- /survey/static/multi-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/multi-select.css -------------------------------------------------------------------------------- /survey/static/redips_drag_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/redips_drag_style.css -------------------------------------------------------------------------------- /survey/static/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/scss/_animated.scss -------------------------------------------------------------------------------- /survey/static/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/scss/_core.scss -------------------------------------------------------------------------------- /survey/static/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/scss/_fixed-width.scss -------------------------------------------------------------------------------- /survey/static/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/scss/_icons.scss -------------------------------------------------------------------------------- /survey/static/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/scss/_larger.scss -------------------------------------------------------------------------------- /survey/static/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/scss/_list.scss -------------------------------------------------------------------------------- /survey/static/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/scss/_mixins.scss -------------------------------------------------------------------------------- /survey/static/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/scss/_path.scss -------------------------------------------------------------------------------- /survey/static/scss/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/scss/_screen-reader.scss -------------------------------------------------------------------------------- /survey/static/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/scss/_stacked.scss -------------------------------------------------------------------------------- /survey/static/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/scss/_variables.scss -------------------------------------------------------------------------------- /survey/static/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/scss/font-awesome.scss -------------------------------------------------------------------------------- /survey/static/success/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/success/css/style.css -------------------------------------------------------------------------------- /survey/static/success/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/success/index.html -------------------------------------------------------------------------------- /survey/static/success/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/success/js/theme.js -------------------------------------------------------------------------------- /survey/static/success/vendor/hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/success/vendor/hover.css -------------------------------------------------------------------------------- /survey/static/toassets/Logo_Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/Logo_Main.png -------------------------------------------------------------------------------- /survey/static/toassets/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/animate.css -------------------------------------------------------------------------------- /survey/static/toassets/assets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/assets.css -------------------------------------------------------------------------------- /survey/static/toassets/backto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/backto.png -------------------------------------------------------------------------------- /survey/static/toassets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/bootstrap.css -------------------------------------------------------------------------------- /survey/static/toassets/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/bootstrap.js -------------------------------------------------------------------------------- /survey/static/toassets/color8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/color8.css -------------------------------------------------------------------------------- /survey/static/toassets/contentsty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/contentsty.css -------------------------------------------------------------------------------- /survey/static/toassets/instyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/instyle.css -------------------------------------------------------------------------------- /survey/static/toassets/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/jquery.js -------------------------------------------------------------------------------- /survey/static/toassets/jquery_002.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/jquery_002.js -------------------------------------------------------------------------------- /survey/static/toassets/jquery_005.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/jquery_005.js -------------------------------------------------------------------------------- /survey/static/toassets/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/light.css -------------------------------------------------------------------------------- /survey/static/toassets/menjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/menjs.js -------------------------------------------------------------------------------- /survey/static/toassets/menstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/menstyle.css -------------------------------------------------------------------------------- /survey/static/toassets/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/modernizr.js -------------------------------------------------------------------------------- /survey/static/toassets/preset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/preset.css -------------------------------------------------------------------------------- /survey/static/toassets/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/responsive.css -------------------------------------------------------------------------------- /survey/static/toassets/style_002.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/style_002.css -------------------------------------------------------------------------------- /survey/static/toassets/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets/theme.js -------------------------------------------------------------------------------- /survey/static/toassets_bkp/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets_bkp/animate.css -------------------------------------------------------------------------------- /survey/static/toassets_bkp/backto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets_bkp/backto.png -------------------------------------------------------------------------------- /survey/static/toassets_bkp/color8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets_bkp/color8.css -------------------------------------------------------------------------------- /survey/static/toassets_bkp/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets_bkp/jquery.js -------------------------------------------------------------------------------- /survey/static/toassets_bkp/preset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets_bkp/preset.css -------------------------------------------------------------------------------- /survey/static/toassets_bkp/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/static/toassets_bkp/theme.js -------------------------------------------------------------------------------- /survey/templates/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/400.html -------------------------------------------------------------------------------- /survey/templates/401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/401.html -------------------------------------------------------------------------------- /survey/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/403.html -------------------------------------------------------------------------------- /survey/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/404.html -------------------------------------------------------------------------------- /survey/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/500.html -------------------------------------------------------------------------------- /survey/templates/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/accounts/login.html -------------------------------------------------------------------------------- /survey/templates/admin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/admin/base.html -------------------------------------------------------------------------------- /survey/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/admin/base_site.html -------------------------------------------------------------------------------- /survey/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/base.html -------------------------------------------------------------------------------- /survey/templates/base/block_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/base/block_modal.html -------------------------------------------------------------------------------- /survey/templates/base/clone_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/base/clone_modal.html -------------------------------------------------------------------------------- /survey/templates/base/field_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/base/field_error.html -------------------------------------------------------------------------------- /survey/templates/batches/assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/batches/assign.html -------------------------------------------------------------------------------- /survey/templates/batches/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/batches/index.html -------------------------------------------------------------------------------- /survey/templates/batches/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/batches/new.html -------------------------------------------------------------------------------- /survey/templates/batches/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/batches/show.html -------------------------------------------------------------------------------- /survey/templates/bland_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/bland_form.html -------------------------------------------------------------------------------- /survey/templates/bulk_sms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/bulk_sms/index.html -------------------------------------------------------------------------------- /survey/templates/dashboard_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/dashboard_form.html -------------------------------------------------------------------------------- /survey/templates/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/empty.html -------------------------------------------------------------------------------- /survey/templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/form.html -------------------------------------------------------------------------------- /survey/templates/formset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/formset.html -------------------------------------------------------------------------------- /survey/templates/formula/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/formula/new.html -------------------------------------------------------------------------------- /survey/templates/home/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/home/edit.html -------------------------------------------------------------------------------- /survey/templates/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/home/index.html -------------------------------------------------------------------------------- /survey/templates/households/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/households/index.html -------------------------------------------------------------------------------- /survey/templates/households/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/households/new.html -------------------------------------------------------------------------------- /survey/templates/households/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/households/show.html -------------------------------------------------------------------------------- /survey/templates/indicator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/indicator/index.html -------------------------------------------------------------------------------- /survey/templates/indicator/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/indicator/new.html -------------------------------------------------------------------------------- /survey/templates/interviews/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/interviews/new.html -------------------------------------------------------------------------------- /survey/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/layout.html -------------------------------------------------------------------------------- /survey/templates/layout2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/layout2.html -------------------------------------------------------------------------------- /survey/templates/layout22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/layout22.html -------------------------------------------------------------------------------- /survey/templates/location_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/location_filter.html -------------------------------------------------------------------------------- /survey/templates/locations/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/locations/new.html -------------------------------------------------------------------------------- /survey/templates/main/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/main/about.html -------------------------------------------------------------------------------- /survey/templates/main/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/main/contact.html -------------------------------------------------------------------------------- /survey/templates/main/discover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/main/discover.html -------------------------------------------------------------------------------- /survey/templates/main/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/main/index.html -------------------------------------------------------------------------------- /survey/templates/naked_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/naked_form.html -------------------------------------------------------------------------------- /survey/templates/new_naked_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/new_naked_form.html -------------------------------------------------------------------------------- /survey/templates/odk/formList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/odk/formList.xml -------------------------------------------------------------------------------- /survey/templates/odk/instances.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/odk/instances.xml -------------------------------------------------------------------------------- /survey/templates/odk/non-response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/odk/non-response.xml -------------------------------------------------------------------------------- /survey/templates/odk/question_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/odk/question_set.xml -------------------------------------------------------------------------------- /survey/templates/odk/submission.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/odk/submission.xml -------------------------------------------------------------------------------- /survey/templates/odk/survey_form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/odk/survey_form.xml -------------------------------------------------------------------------------- /survey/templates/odk/survey_form2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/odk/survey_form2.xml -------------------------------------------------------------------------------- /survey/templates/odk/xformsList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/odk/xformsList.xml -------------------------------------------------------------------------------- /survey/templates/page_loader.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/templates/page_with_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/page_with_table.html -------------------------------------------------------------------------------- /survey/templates/question_set/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/question_set/new.html -------------------------------------------------------------------------------- /survey/templates/questions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/questions/index.html -------------------------------------------------------------------------------- /survey/templates/questions/logic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/questions/logic.html -------------------------------------------------------------------------------- /survey/templates/questions/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/questions/new.html -------------------------------------------------------------------------------- /survey/templates/search_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/search_form.html -------------------------------------------------------------------------------- /survey/templates/slideshow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/slideshow.html -------------------------------------------------------------------------------- /survey/templates/surveys/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/surveys/index.html -------------------------------------------------------------------------------- /survey/templates/surveys/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/surveys/new.html -------------------------------------------------------------------------------- /survey/templates/surveys/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/surveys/show.html -------------------------------------------------------------------------------- /survey/templates/test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/test/test.xml -------------------------------------------------------------------------------- /survey/templates/users/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/users/index.html -------------------------------------------------------------------------------- /survey/templates/users/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/users/new.html -------------------------------------------------------------------------------- /survey/templates/users/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/users/show.html -------------------------------------------------------------------------------- /survey/templates/ussd/YO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/ussd/YO.txt -------------------------------------------------------------------------------- /survey/templates/ussd/simulator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templates/ussd/simulator.html -------------------------------------------------------------------------------- /survey/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/templatetags/template_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/templatetags/template_tags.py -------------------------------------------------------------------------------- /survey/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/tests/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/base_test.py -------------------------------------------------------------------------------- /survey/tests/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/tests/forms/test_batch_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/forms/test_batch_form.py -------------------------------------------------------------------------------- /survey/tests/forms/test_filter_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/forms/test_filter_form.py -------------------------------------------------------------------------------- /survey/tests/forms/test_survey_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/forms/test_survey_form.py -------------------------------------------------------------------------------- /survey/tests/forms/test_users_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/forms/test_users_form.py -------------------------------------------------------------------------------- /survey/tests/management/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'andrew' 2 | -------------------------------------------------------------------------------- /survey/tests/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/tests/models/test_ea_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/models/test_ea_model.py -------------------------------------------------------------------------------- /survey/tests/odk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/tests/odk/test_odk_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/odk/test_odk_utils.py -------------------------------------------------------------------------------- /survey/tests/odk/testaudio.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/odk/testaudio.m4a -------------------------------------------------------------------------------- /survey/tests/odk/testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/odk/testimage.png -------------------------------------------------------------------------------- /survey/tests/odk/testvideo.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/odk/testvideo.mov -------------------------------------------------------------------------------- /survey/tests/online/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/online/__init__.py -------------------------------------------------------------------------------- /survey/tests/online/testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/online/testimage.png -------------------------------------------------------------------------------- /survey/tests/services/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'mnandri' 2 | -------------------------------------------------------------------------------- /survey/tests/template_tags/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'andrew' 2 | -------------------------------------------------------------------------------- /survey/tests/test_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/test_sessions.py -------------------------------------------------------------------------------- /survey/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'mnandri' 2 | -------------------------------------------------------------------------------- /survey/tests/utils/test_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/utils/test_sms.py -------------------------------------------------------------------------------- /survey/tests/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/tests/views/test_batch_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/views/test_batch_view.py -------------------------------------------------------------------------------- /survey/tests/views/test_users_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/views/test_users_view.py -------------------------------------------------------------------------------- /survey/tests/views/testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/tests/views/testimage.png -------------------------------------------------------------------------------- /survey/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/urls.py -------------------------------------------------------------------------------- /survey/utils/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'mnandri' 2 | -------------------------------------------------------------------------------- /survey/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/utils/decorators.py -------------------------------------------------------------------------------- /survey/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/utils/logger.py -------------------------------------------------------------------------------- /survey/utils/query_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/utils/query_helper.py -------------------------------------------------------------------------------- /survey/utils/sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/utils/sms.py -------------------------------------------------------------------------------- /survey/utils/views_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/utils/views_helper.py -------------------------------------------------------------------------------- /survey/utils/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/utils/zip.py -------------------------------------------------------------------------------- /survey/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /survey/views/aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/aggregates.py -------------------------------------------------------------------------------- /survey/views/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/batch.py -------------------------------------------------------------------------------- /survey/views/bulk_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/bulk_sms.py -------------------------------------------------------------------------------- /survey/views/custom_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/custom_decorators.py -------------------------------------------------------------------------------- /survey/views/enumeration_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/enumeration_area.py -------------------------------------------------------------------------------- /survey/views/excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/excel.py -------------------------------------------------------------------------------- /survey/views/home_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/home_page.py -------------------------------------------------------------------------------- /survey/views/indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/indicators.py -------------------------------------------------------------------------------- /survey/views/interviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/interviewer.py -------------------------------------------------------------------------------- /survey/views/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/locations.py -------------------------------------------------------------------------------- /survey/views/question_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/question_module.py -------------------------------------------------------------------------------- /survey/views/question_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/question_set.py -------------------------------------------------------------------------------- /survey/views/question_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/question_template.py -------------------------------------------------------------------------------- /survey/views/respondent_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/respondent_group.py -------------------------------------------------------------------------------- /survey/views/set_questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/set_questions.py -------------------------------------------------------------------------------- /survey/views/survey_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/survey_completion.py -------------------------------------------------------------------------------- /survey/views/survey_listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/survey_listing.py -------------------------------------------------------------------------------- /survey/views/surveys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/surveys.py -------------------------------------------------------------------------------- /survey/views/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/survey/views/users.py -------------------------------------------------------------------------------- /usurvey-apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unicefuganda/uSurvey/HEAD/usurvey-apps.yml --------------------------------------------------------------------------------