├── .gitignore ├── .travis.yml ├── README.ja.md ├── README.md ├── api ├── __init__.py ├── serializers.py └── views.py ├── bill ├── __init__.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_law.py │ ├── 0003_add_bill_and_unique_uid.py │ └── __init__.py ├── models.py ├── search_indexes.py ├── templates │ ├── bill │ │ ├── bill_summary.html │ │ ├── bills.html │ │ └── law.html │ └── search │ │ └── indexes │ │ └── bill │ │ └── bill_text.txt ├── tests.py ├── urls.py └── views.py ├── candidates ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_candidates_data.py │ ├── 0003_candidates_identifiers.py │ └── __init__.py ├── models.py ├── search_indexes.py ├── templates │ ├── candidates │ │ ├── counties.html │ │ ├── district.html │ │ ├── district_nonregional.html │ │ ├── district_result.html │ │ ├── districts.html │ │ └── pc.html │ └── search │ │ └── indexes │ │ └── candidates │ │ └── terms_text.txt ├── tests.py ├── urls.py └── views.py ├── committees ├── __init__.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160301_0845.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── commontag ├── __init__.py ├── models.py ├── templatetags │ ├── __init__.py │ └── ly_extras.py ├── tests.py └── views.py ├── docker-compose.yml ├── elections ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── g0v.json ├── legislator ├── __init__.py ├── admin.py ├── context_processor.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_legislator_identifiers.py │ ├── 0003_auto_20160330_0658.py │ ├── 0004_legislator_data.py │ └── __init__.py ├── models.py ├── search_indexes.py ├── templates │ ├── legislator │ │ ├── biller_detail.html │ │ ├── chart_personal_report.html │ │ ├── chart_report.html │ │ ├── chart_report_for_political_contribution.html │ │ ├── committee.html │ │ ├── county.html │ │ ├── d3 │ │ │ ├── personal_politicalcontributions_in_pie_chart.html │ │ │ ├── personal_politicalcontributions_out_pie_chart.html │ │ │ ├── political_contributions_bar_chart.html │ │ │ └── report_bar_chart.html │ │ ├── index │ │ │ ├── countys.html │ │ │ ├── index.html │ │ │ └── index_ordered.html │ │ ├── info.html │ │ ├── personal_politicalcontributions.html │ │ ├── platformer.html │ │ ├── voter_detail.html │ │ └── voter_standpoints.html │ └── search │ │ └── indexes │ │ └── legislator │ │ └── legislator_text.txt ├── tests.py ├── urls.py └── views.py ├── local_db.dump ├── ly ├── __init__.py ├── celery.py ├── local_settings.sample.py ├── settings.py ├── test.py ├── urls.py ├── views.py └── wsgi.py ├── manage.py ├── requirements.txt ├── search ├── __init__.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── search_indexes.py ├── templates │ └── search │ │ └── indexes │ │ └── search │ │ └── keyword_text.txt ├── tests.py └── views.py ├── sittings ├── __init__.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── standpoint ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_add_user_uid.py │ ├── 0003_add_bill_and_unique_uid.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── static ├── css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── g0v.css │ ├── navbar-custom.css │ ├── style-responsive.css │ └── style.css ├── img │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ └── taiwan.png ├── js │ ├── bk-bootstrap.min.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── sorttable.js └── rest_framework │ ├── css │ ├── bootstrap-tweaks.css │ ├── bootstrap.min.css │ ├── default.css │ └── prettify.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── img │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ └── grid.png │ └── js │ ├── ajax-form.js │ ├── bootstrap.min.js │ ├── csrf.js │ ├── default.js │ ├── jquery-1.11.3.min.js │ ├── jquery-1.8.1-min.js │ └── prettify-min.js ├── templates ├── 404.html ├── 500.html ├── about.html ├── admin │ └── base_site.html ├── base.html ├── common │ ├── bills.html │ ├── color_info_of_party.html │ ├── highlight.html │ ├── keyword_auto_complete.html │ ├── ly_color_by_party.html │ ├── ly_info.html │ ├── pagination.html │ ├── search_keyword_form.html │ ├── search_name_form.html │ ├── sorttable.html │ ├── sponsor.html │ └── vote_conscience_checkbox.html ├── home.html ├── pagination │ └── pagination.html └── reference.html ├── test.sh └── vote ├── __init__.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── search_indexes.py ├── tasks.py ├── templates ├── search │ └── indexes │ │ └── vote │ │ └── vote_text.txt └── vote │ ├── vote.html │ ├── vote_d3_pie_chart.html │ ├── vote_summary.html │ └── votes.html ├── tests.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/api/serializers.py -------------------------------------------------------------------------------- /api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/api/views.py -------------------------------------------------------------------------------- /bill/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bill/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/bill/migrations/0001_initial.py -------------------------------------------------------------------------------- /bill/migrations/0002_law.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/bill/migrations/0002_law.py -------------------------------------------------------------------------------- /bill/migrations/0003_add_bill_and_unique_uid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/bill/migrations/0003_add_bill_and_unique_uid.py -------------------------------------------------------------------------------- /bill/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bill/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/bill/models.py -------------------------------------------------------------------------------- /bill/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/bill/search_indexes.py -------------------------------------------------------------------------------- /bill/templates/bill/bill_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/bill/templates/bill/bill_summary.html -------------------------------------------------------------------------------- /bill/templates/bill/bills.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/bill/templates/bill/bills.html -------------------------------------------------------------------------------- /bill/templates/bill/law.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/bill/templates/bill/law.html -------------------------------------------------------------------------------- /bill/templates/search/indexes/bill/bill_text.txt: -------------------------------------------------------------------------------- 1 | {{ object.for_search }} 2 | -------------------------------------------------------------------------------- /bill/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/bill/tests.py -------------------------------------------------------------------------------- /bill/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/bill/urls.py -------------------------------------------------------------------------------- /bill/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/bill/views.py -------------------------------------------------------------------------------- /candidates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /candidates/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/admin.py -------------------------------------------------------------------------------- /candidates/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/migrations/0001_initial.py -------------------------------------------------------------------------------- /candidates/migrations/0002_candidates_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/migrations/0002_candidates_data.py -------------------------------------------------------------------------------- /candidates/migrations/0003_candidates_identifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/migrations/0003_candidates_identifiers.py -------------------------------------------------------------------------------- /candidates/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /candidates/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/models.py -------------------------------------------------------------------------------- /candidates/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/search_indexes.py -------------------------------------------------------------------------------- /candidates/templates/candidates/counties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/templates/candidates/counties.html -------------------------------------------------------------------------------- /candidates/templates/candidates/district.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/templates/candidates/district.html -------------------------------------------------------------------------------- /candidates/templates/candidates/district_nonregional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/templates/candidates/district_nonregional.html -------------------------------------------------------------------------------- /candidates/templates/candidates/district_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/templates/candidates/district_result.html -------------------------------------------------------------------------------- /candidates/templates/candidates/districts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/templates/candidates/districts.html -------------------------------------------------------------------------------- /candidates/templates/candidates/pc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/templates/candidates/pc.html -------------------------------------------------------------------------------- /candidates/templates/search/indexes/candidates/terms_text.txt: -------------------------------------------------------------------------------- 1 | {{ object.name }} 2 | -------------------------------------------------------------------------------- /candidates/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/tests.py -------------------------------------------------------------------------------- /candidates/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/urls.py -------------------------------------------------------------------------------- /candidates/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/candidates/views.py -------------------------------------------------------------------------------- /committees/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /committees/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/committees/migrations/0001_initial.py -------------------------------------------------------------------------------- /committees/migrations/0002_auto_20160301_0845.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/committees/migrations/0002_auto_20160301_0845.py -------------------------------------------------------------------------------- /committees/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /committees/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/committees/models.py -------------------------------------------------------------------------------- /committees/tests.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /committees/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /commontag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commontag/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/commontag/models.py -------------------------------------------------------------------------------- /commontag/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commontag/templatetags/ly_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/commontag/templatetags/ly_extras.py -------------------------------------------------------------------------------- /commontag/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commontag/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/commontag/views.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /elections/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elections/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/elections/admin.py -------------------------------------------------------------------------------- /elections/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/elections/apps.py -------------------------------------------------------------------------------- /elections/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/elections/migrations/0001_initial.py -------------------------------------------------------------------------------- /elections/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elections/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/elections/models.py -------------------------------------------------------------------------------- /elections/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/elections/tests.py -------------------------------------------------------------------------------- /elections/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /g0v.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/g0v.json -------------------------------------------------------------------------------- /legislator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legislator/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/admin.py -------------------------------------------------------------------------------- /legislator/context_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/context_processor.py -------------------------------------------------------------------------------- /legislator/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/migrations/0001_initial.py -------------------------------------------------------------------------------- /legislator/migrations/0002_legislator_identifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/migrations/0002_legislator_identifiers.py -------------------------------------------------------------------------------- /legislator/migrations/0003_auto_20160330_0658.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/migrations/0003_auto_20160330_0658.py -------------------------------------------------------------------------------- /legislator/migrations/0004_legislator_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/migrations/0004_legislator_data.py -------------------------------------------------------------------------------- /legislator/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legislator/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/models.py -------------------------------------------------------------------------------- /legislator/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/search_indexes.py -------------------------------------------------------------------------------- /legislator/templates/legislator/biller_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/biller_detail.html -------------------------------------------------------------------------------- /legislator/templates/legislator/chart_personal_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/chart_personal_report.html -------------------------------------------------------------------------------- /legislator/templates/legislator/chart_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/chart_report.html -------------------------------------------------------------------------------- /legislator/templates/legislator/chart_report_for_political_contribution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/chart_report_for_political_contribution.html -------------------------------------------------------------------------------- /legislator/templates/legislator/committee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/committee.html -------------------------------------------------------------------------------- /legislator/templates/legislator/county.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/county.html -------------------------------------------------------------------------------- /legislator/templates/legislator/d3/personal_politicalcontributions_in_pie_chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/d3/personal_politicalcontributions_in_pie_chart.html -------------------------------------------------------------------------------- /legislator/templates/legislator/d3/personal_politicalcontributions_out_pie_chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/d3/personal_politicalcontributions_out_pie_chart.html -------------------------------------------------------------------------------- /legislator/templates/legislator/d3/political_contributions_bar_chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/d3/political_contributions_bar_chart.html -------------------------------------------------------------------------------- /legislator/templates/legislator/d3/report_bar_chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/d3/report_bar_chart.html -------------------------------------------------------------------------------- /legislator/templates/legislator/index/countys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/index/countys.html -------------------------------------------------------------------------------- /legislator/templates/legislator/index/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/index/index.html -------------------------------------------------------------------------------- /legislator/templates/legislator/index/index_ordered.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/index/index_ordered.html -------------------------------------------------------------------------------- /legislator/templates/legislator/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/info.html -------------------------------------------------------------------------------- /legislator/templates/legislator/personal_politicalcontributions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/personal_politicalcontributions.html -------------------------------------------------------------------------------- /legislator/templates/legislator/platformer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/platformer.html -------------------------------------------------------------------------------- /legislator/templates/legislator/voter_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/voter_detail.html -------------------------------------------------------------------------------- /legislator/templates/legislator/voter_standpoints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/templates/legislator/voter_standpoints.html -------------------------------------------------------------------------------- /legislator/templates/search/indexes/legislator/legislator_text.txt: -------------------------------------------------------------------------------- 1 | {{ object.name }} 2 | -------------------------------------------------------------------------------- /legislator/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/tests.py -------------------------------------------------------------------------------- /legislator/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/urls.py -------------------------------------------------------------------------------- /legislator/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/legislator/views.py -------------------------------------------------------------------------------- /local_db.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/local_db.dump -------------------------------------------------------------------------------- /ly/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/ly/__init__.py -------------------------------------------------------------------------------- /ly/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/ly/celery.py -------------------------------------------------------------------------------- /ly/local_settings.sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/ly/local_settings.sample.py -------------------------------------------------------------------------------- /ly/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/ly/settings.py -------------------------------------------------------------------------------- /ly/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/ly/test.py -------------------------------------------------------------------------------- /ly/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/ly/urls.py -------------------------------------------------------------------------------- /ly/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/ly/views.py -------------------------------------------------------------------------------- /ly/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/ly/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/requirements.txt -------------------------------------------------------------------------------- /search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/search/migrations/0001_initial.py -------------------------------------------------------------------------------- /search/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/search/models.py -------------------------------------------------------------------------------- /search/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/search/search_indexes.py -------------------------------------------------------------------------------- /search/templates/search/indexes/search/keyword_text.txt: -------------------------------------------------------------------------------- 1 | {{ object.content }} 2 | -------------------------------------------------------------------------------- /search/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/search/views.py -------------------------------------------------------------------------------- /sittings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sittings/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/sittings/migrations/0001_initial.py -------------------------------------------------------------------------------- /sittings/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sittings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/sittings/models.py -------------------------------------------------------------------------------- /sittings/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sittings/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /standpoint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standpoint/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/standpoint/admin.py -------------------------------------------------------------------------------- /standpoint/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/standpoint/migrations/0001_initial.py -------------------------------------------------------------------------------- /standpoint/migrations/0002_add_user_uid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/standpoint/migrations/0002_add_user_uid.py -------------------------------------------------------------------------------- /standpoint/migrations/0003_add_bill_and_unique_uid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/standpoint/migrations/0003_add_bill_and_unique_uid.py -------------------------------------------------------------------------------- /standpoint/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standpoint/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/standpoint/models.py -------------------------------------------------------------------------------- /standpoint/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/standpoint/tests.py -------------------------------------------------------------------------------- /standpoint/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /static/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/g0v.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/css/g0v.css -------------------------------------------------------------------------------- /static/css/navbar-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/css/navbar-custom.css -------------------------------------------------------------------------------- /static/css/style-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/css/style-responsive.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /static/img/taiwan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/img/taiwan.png -------------------------------------------------------------------------------- /static/js/bk-bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/js/bk-bootstrap.min.js -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/sorttable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/js/sorttable.js -------------------------------------------------------------------------------- /static/rest_framework/css/bootstrap-tweaks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/css/bootstrap-tweaks.css -------------------------------------------------------------------------------- /static/rest_framework/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/rest_framework/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/css/default.css -------------------------------------------------------------------------------- /static/rest_framework/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/css/prettify.css -------------------------------------------------------------------------------- /static/rest_framework/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/rest_framework/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/rest_framework/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/rest_framework/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/rest_framework/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/rest_framework/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /static/rest_framework/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /static/rest_framework/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/img/grid.png -------------------------------------------------------------------------------- /static/rest_framework/js/ajax-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/js/ajax-form.js -------------------------------------------------------------------------------- /static/rest_framework/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/rest_framework/js/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/js/csrf.js -------------------------------------------------------------------------------- /static/rest_framework/js/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/js/default.js -------------------------------------------------------------------------------- /static/rest_framework/js/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/js/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /static/rest_framework/js/jquery-1.8.1-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/js/jquery-1.8.1-min.js -------------------------------------------------------------------------------- /static/rest_framework/js/prettify-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/static/rest_framework/js/prettify-min.js -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/500.html -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/admin/base_site.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/common/bills.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/common/bills.html -------------------------------------------------------------------------------- /templates/common/color_info_of_party.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/common/color_info_of_party.html -------------------------------------------------------------------------------- /templates/common/highlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/common/highlight.html -------------------------------------------------------------------------------- /templates/common/keyword_auto_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/common/keyword_auto_complete.html -------------------------------------------------------------------------------- /templates/common/ly_color_by_party.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/common/ly_color_by_party.html -------------------------------------------------------------------------------- /templates/common/ly_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/common/ly_info.html -------------------------------------------------------------------------------- /templates/common/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/common/pagination.html -------------------------------------------------------------------------------- /templates/common/search_keyword_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/common/search_keyword_form.html -------------------------------------------------------------------------------- /templates/common/search_name_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/common/search_name_form.html -------------------------------------------------------------------------------- /templates/common/sorttable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/common/sorttable.html -------------------------------------------------------------------------------- /templates/common/sponsor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/common/sponsor.html -------------------------------------------------------------------------------- /templates/common/vote_conscience_checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/common/vote_conscience_checkbox.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/pagination/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/pagination/pagination.html -------------------------------------------------------------------------------- /templates/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/templates/reference.html -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/test.sh -------------------------------------------------------------------------------- /vote/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vote/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/vote/migrations/0001_initial.py -------------------------------------------------------------------------------- /vote/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vote/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/vote/models.py -------------------------------------------------------------------------------- /vote/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/vote/search_indexes.py -------------------------------------------------------------------------------- /vote/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/vote/tasks.py -------------------------------------------------------------------------------- /vote/templates/search/indexes/vote/vote_text.txt: -------------------------------------------------------------------------------- 1 | {{ object.content }} 2 | -------------------------------------------------------------------------------- /vote/templates/vote/vote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/vote/templates/vote/vote.html -------------------------------------------------------------------------------- /vote/templates/vote/vote_d3_pie_chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/vote/templates/vote/vote_d3_pie_chart.html -------------------------------------------------------------------------------- /vote/templates/vote/vote_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/vote/templates/vote/vote_summary.html -------------------------------------------------------------------------------- /vote/templates/vote/votes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/vote/templates/vote/votes.html -------------------------------------------------------------------------------- /vote/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/vote/tests.py -------------------------------------------------------------------------------- /vote/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/vote/urls.py -------------------------------------------------------------------------------- /vote/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0v/twly-voter-guide/HEAD/vote/views.py --------------------------------------------------------------------------------