{# templates/candidate/candidate_and_politician_name_fix_list.html #} {% extends "template_base.html" %} {% block content %}

Repair imported {{ person_text }} names

Please pay extra attention to highlighted names.

There are {{ number_of_rows }} names that need repair.

{% csrf_token %} {% for person in people_list %} {% endfor %}
# Name in DB Suggested Name Google Civic Candidate Name Office Name Party State We Vote ID Date last updated
{{ forloop.counter|add:index_offset }} {{ person.person_name }} {{ person.google_civic_candidate_name }} {{ person.contest_office_name }} {{ person.party }} {{ person.state_code }} {{ person.we_vote_id }} {{ person.date_last_updated }}
{% endblock %}