{# templates/politician/politician_gender_id_fix_list.html #} {% extends "template_base.html" %} {% block title %}Gender Identification{% endblock %} {% block content %}

Set politician gender identification

There are {{ number_of_rows }} politicians without a gender specified in our database. Gender guesses are made by comparing the politician's first name with a database of names and likely genders. You can override incorrect or indeterminate (...?...) guesses before saving.

Show Politicians with "Unknown" genders

{% csrf_token %} {% for person in people_list %} {% endfor %}
# Name in DB Gender Guess Gender To Save Needs Saving? Party State We Vote ID Date last updated
{{ forloop.counter|add:index_offset }} {% if person.we_vote_hosted_profile_image_url_medium %} {% endif %} {{ person.person_name }} (search) {{ person.displayable_guess }} {% if person.gender_guess != 'unknown' %}Needs saving{% endif %} {{ person.party }} {{ person.state_code }} {{ person.we_vote_id }} {{ person.date_last_updated }}
{% endblock %}