{# templates/import_export_vote_smart/candidate_list.html #} {% extends "template_base.html" %} {% block title %}Vote Smart Candidates{% endblock %} {% block content %}

< Back to Vote Smart Index

Vote Smart Candidates

{% if election_list %}
{% csrf_token %}
{% endif %}{# End of if election_list #} {% if candidate_list %} {% for candidate in candidate_list %} {% endfor %}
    First Name Last Name Election Year State Id
{{ forloop.counter }} {{ candidate.candidateId }} {{ candidate.firstName }} {{ candidate.lastName }} {{ candidate.electionYear }} {{ candidate.officeStateId }}

{% else %}

(no candidates found)

{% endif %} {% endblock %}