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

< Back to Voters

Voter List Analysis

{% if voter_list_with_sign_in_data %}

With twitter_id, twitter_screen_name, facebook_id or email

Create TwitterLinkToVoter for all records that don't have collisions.
Populate Suggested Friends {% for voter in voter_list_with_sign_in_data %} {% endfor %}
ID   We Vote ID You Voter Table FacebookLinkToVoter TwitterLinkToVoter TwitterLinkToOrg Email Admin Partner Organization Political Data Verified Volunteer linked organization we_vote_id Positions Voter Positions Link to Other Orgs Friends & Invitations
{{ forloop.counter }} {{ voter.id }} {% if voter.we_vote_hosted_profile_image_url_medium %}{% endif %} {{ voter.get_full_name|default_if_none:"" }} {{ voter.we_vote_id }}
{{ voter.text_for_map_search|default_if_none:"" }}
{% if voter.id == voter_id_signed_in %}*ME*{% else %}{% endif %} {% if voter.twitter_id %} @{{ voter.twitter_screen_name }}
tw: {{ voter.twitter_id }}
{% endif %} {% if voter.facebook_id or voter.fb_username %} fb: {{ voter.fb_username|default_if_none:"" }}, {{ voter.facebook_id|default_if_none:"" }} {% endif %} See images
{% if voter.duplicate_facebook_data_found %} DUPLICATE VOTER FACEBOOK DATA FOUND {% elif voter.facebook_id %} {% if not voter.facebook_id_from_link_to_voter %} Create FacebookLinkToVoter {% endif %} {% endif %} {% if voter.facebook_id_from_link_to_voter %} fb: {{ voter.facebook_id_from_link_to_voter }} {% endif %} {% if voter.duplicate_twitter_data_found %} DUPLICATE VOTER TWITTER DATA FOUND {% elif voter.twitter_id or voter.twitter_screen_name %} {% if not voter.twitter_id_from_link_to_voter %} Create TwitterLinkToVoter {% endif %} {% endif %} {% if voter.twitter_id_from_link_to_voter %} @{{ voter.twitter_screen_name_from_link_to_voter }}
{{ voter.twitter_id_from_link_to_voter }} {% endif %}
{% if voter.twitter_id_from_link_to_organization %} {{ voter.organization_we_vote_id_from_link_to_organization }}
@{{ voter.twitter_screen_name_from_link_to_organization }}
{{ voter.twitter_id_from_link_to_organization }} {% endif %} {{ voter.twitter_link_to_organization_twitter_id_source_text }}
{% if voter.email %} voter.email: {{ voter.email }}
{{ voter.primary_email_we_vote_id|default_if_none:"" }} {% if not voter.email_ownership_is_verified %} NOT_VERIFIED {% endif %}
{% endif %} {% if voter.linked_emails %} -------
{% for one_email in voter.linked_emails %} {% if one_email.email_ownership_is_verified %} {{ one_email.normalized_email_address }}: :{{ one_email.we_vote_id }}
{% else %} {{ one_email.normalized_email_address }}: :{{ one_email.we_vote_id }}
{% endif %} {% endfor %} {% endif %}
{% if voter.is_admin %}Y{% else %}{% endif %} {% if voter.is_partner_organization %}Y{% else %}{% endif %} {% if voter.is_political_data_manager %}Manager{% elif voter.is_political_data_viewer %}Viewer{% endif %} {% if voter.is_verified_volunteer %}Y{% else %}{% endif %} {% if voter.linked_organization_we_vote_id %} {{ voter.linked_organization_we_vote_id }} {% elif voter.is_signed_in %} Create Endorser {% endif %} {% if voter.positions_count %} {{ voter.positions_count }} {% endif %} {% for other_organization in voter.links_to_other_organizations %} {% if other_organization.we_vote_id != voter.linked_organization_we_vote_id %} BAD {{ other_organization.we_vote_id }} {% endif %} {% endfor %} {% if voter.current_friends_count %} Friends: {{ voter.current_friends_count }}
{% endif %} {% if voter.friend_invitations_sent_by_me_count %} From: {{ voter.friend_invitations_sent_by_me_count }}
{% endif %} {% if voter.friend_invitations_sent_to_me_count %} To: {{ voter.friend_invitations_sent_to_me_count }}
{% endif %} {% if voter.suggested_friend_list_count %} Sugg: {{ voter.suggested_friend_list_count }}
{% endif %} {% if voter.organizations_followed_count %} Foll: {{ voter.organizations_followed_count }}
{% endif %}
{% else %}

(no voters found)

{% endif %}
{% endblock %}