{# templates/measure/measure_list.html #} {% extends "template_base.html" %} {% block title %}Measures{% endblock %} {% block content %}
Import New Measures > (open in new window)
Refresh Positions from Contest Measure info for this election
{% if measure_list %} {% if google_civic_election_id %}| Measure Title | State | Year / Election | We Vote ID | Ballotpedia ID | Ballotpedia Status | {% if google_civic_election_id %}Support | Oppose | {% endif %}||
|---|---|---|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ measure.measure_title }} | {{ measure.state_code }} | {{ measure.measure_year }} / {{ measure.google_civic_election_id }} | {{ measure.we_vote_id }} | {{ measure.ballotpedia_measure_id }} | {{ measure.ballotpedia_measure_status|default_if_none:"" }} | {% if google_civic_election_id %}{% if measure.support_count %}{{ measure.support_count }} {{ measure.percentage_of_support }}%{% endif %} |
{% if measure.oppose_count %}{{ measure.oppose_count }} {{ measure.percentage_of_oppose }}%{% endif %} |
{% endif %}
edit |
(no measures found)
{% endif %} {% endblock %}