{# templates/voter/voter_summary.html #} {% extends "template_base.html" %} {% block title %}{% if voter %} {{ voter.get_full_name }} Summary {% else %}No Voter Found {% endif %}{% endblock %} {% block content %} {% load template_filters %} {% load humanize %} < Back to Voters {% if voter %}

{{ voter.get_full_name }} Summary

{% if voter.twitter_screen_name %} {% endif %}
Voter IDs: {{ voter.we_vote_id }} (id: {{ voter.id }})
Linked Organization IDs:  {% if voter.linked_organization_we_vote_id %} {{ voter.linked_organization_we_vote_id }} {% endif %}
Admin?: {% if voter.is_admin %}Yes{% else %}No{% endif %}
Twitter Screen Name: {{ voter.twitter_screen_name }}
  edit


{% if voter_address_list %} This is a summary of VoterAddress entries for this voter. {% for voter_address in voter_address_list %} {% endfor %}
Address Election BallotReturned
{{ forloop.counter }} {{ voter_address.text_for_map_search }} {% if voter_address.google_civic_election_id %} {{ voter_address.google_civic_election_id }} {% endif %} {% if voter_address.ballot_returned_we_vote_id %} {{ voter_address.ballot_returned_we_vote_id }} {% endif %}
{% endif %} {% if voter.we_vote_hosted_profile_image_url_tiny %} we_vote_hosted_profile_image_url_tiny: {{ voter.we_vote_hosted_profile_image_url_tiny }}


{% endif %} {% if voter.we_vote_hosted_profile_image_url_medium %} we_vote_hosted_profile_image_url_medium: {{ voter.we_vote_hosted_profile_image_url_medium }}


{% endif %} {% if voter.we_vote_hosted_profile_image_url_large %} we_vote_hosted_profile_image_url_large: {{ voter.we_vote_hosted_profile_image_url_large }}

{% endif %}

{{ voter.get_full_name }} Has Shared

{% csrf_token %} {# #} {# #} {# #} {% if election_years_available %} {% endif %}{# End of if election_years_available #}     {% if voter_summary_search %} clear search  {% endif %}
{% if voter_who_shares_summary_list %} {% include "share/voter_who_shares_summary_table.html" with voter_who_shares_summary_list=voter_who_shares_summary_list %} {% endif %} {% else %}

No Voter Found

Please visit the Voter List page. {% endif %} {% endblock %}