{# templates/election/election_edit.html #} {% extends "template_base.html" %} {% block title %}{% if election %}{{ election.election_name }}{% else %}Create New Election{% endif %}{% endblock %} {% block content %} {% load template_filters %} < Back to Elections

{% if election %}Edit {{ election.election_name|default_if_none:"" }}{% else %} Create New Election{% endif %}

{% csrf_token %}
Show in lists of elections for voters     Ignore this election     Election data import finished (Offices, Candidates, Ballots)     Candidate photos finished     Is National Election
Use CTCL as default data source     Use CTCL for state codes:     Use Google Civic      Use Ballotpedia      Use Vote USA
{{ election.vote_usa_same_day_election_suffix_list }}
{% if not ballotpedia_election_list %}
{% endif %}{# End of if ballotpedia_election_list #}
{% if ballotpedia_election_list %}
{% for ballotpedia_election in ballotpedia_election_list %} {% endfor %}
ID District Name District Type Election Type
{{ forloop.counter }} {{ ballotpedia_election.ballotpedia_election_id|default_if_none:"" }} {{ ballotpedia_election.district_name|default_if_none:"" }} {{ ballotpedia_election.district_type|default_if_none:"" }} {{ ballotpedia_election.election_type|default_if_none:"" }} {{ ballotpedia_election.election_description|default_if_none:"" }}
{% csrf_token %}      
{% endif %}{# End of if ballotpedia_election_list #} {% if election %}

{% csrf_token %}      
{% endif %}

{% endblock %}