{# templates/admin_tools/data_cleanup_position_list_analysis.html #} {% extends "template_base.html" %} {% block title %}Position List Analysis{% endblock %} {% block content %} < Back to Data Cleanup Home

Position List Analysis

{% if positions_for_friends_without_election_id_count or public_positions_without_election_id_count %} Add Election Id to Positions Missing It, Add Endorser Voters & Positions Missing It,
{% endif %} {% if election_list %}
{% csrf_token %}
{% endif %}{# End of if election_list #}
{% if public_positions_without_organization %}

Public Positions without Endorser We Vote Id

{% for position in public_positions_without_organization %} {% endfor %}
ID Voter Voter Id Endorser Org Id Stance Candidate/Measure Election
{{ forloop.counter }} {{ position.we_vote_id }} {% if position.voter %} {{ position.voter.we_vote_id }}
{% if position.voter.signed_in_with_email %}Email verified
{% endif %} {% if position.voter.signed_in_facebook %}Facebook
{% endif %} {% if position.voter.signed_in_twitter %}Twitter
{% endif %} {% else %} (voter missing) {% endif %}
{% if position.voter %} {{ position.voter.id }} {% endif %} {% if position.organization %} {{ position.organization.organization_name }} - {{ position.organization.we_vote_id }} {% else %} (organization missing) {% endif %} {% if position.organization %} {{ position.organization.id }} {% endif %} {% if position.organization %} {{ position.get_stance_display }} - {{ position.statement_text }} {% else %} {{ position.get_stance_display }} - {{ position.statement_text }} {% endif %} {% if position.candidate_campaign %} {{ position.candidate_campaign.candidate_name }} {% elif position.contest_measure %} {{ position.contest_measure.measure_title }} {% else %} (name unknown) {% endif %} {% if position.election.election_day_text %}{{ position.election.election_day_text }}{% else %}{{ position.election.google_civic_election_id }}{% endif %} {% if position.vote_smart_time_span %}{{ position.vote_smart_time_span }}{% endif %}
{% else %}

(no "Public Positions without Organization We Vote Id" found)

{% endif %} {% if positions_for_friends_without_organization %}

Positions for Friends without Organization We Vote Id

{% for position in positions_for_friends_without_organization %} {% endfor %}
ID Voter Voter Id Endorser Org Id Stance Candidate/Measure Election
{{ forloop.counter }} {{ position.we_vote_id }} {% if position.voter %} {{ position.voter.we_vote_id }}
{% if position.voter.signed_in_with_email %}Email verified
{% endif %} {% if position.voter.signed_in_facebook %}Facebook
{% endif %} {% if position.voter.signed_in_twitter %}Twitter
{% endif %} {% else %} (voter missing) {% endif %}
{% if position.voter %} {{ position.voter.id }} {% endif %} {% if position.organization %} {{ position.organization.organization_name }} - {{ position.organization.we_vote_id }} {% else %} (organization missing) {% endif %} {% if position.organization %} {{ position.organization.id }} {% endif %} {% if position.organization %} {{ position.get_stance_display }} - {{ position.statement_text }} {% else %} {{ position.get_stance_display }} - {{ position.statement_text }} {% endif %} {% if position.candidate_campaign %} {{ position.candidate_campaign.candidate_name }} {% elif position.contest_measure %} {{ position.contest_measure.measure_title }} {% else %} (name unknown) {% endif %} {% if position.election.election_day_text %}{{ position.election.election_day_text }}{% endif %} {% if position.vote_smart_time_span %}{{ position.vote_smart_time_span }}{% endif %}
{% else %}

(no "Positions for Friends without Organization We Vote Id" found)

{% endif %}



{% endblock %}