{# 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
| 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 %} |
{% if voter.twitter_screen_name %}
| Twitter Screen Name: |
{{ voter.twitter_screen_name }}
|
{% endif %}
| |
edit |
{% if voter_address_list %}
This is a summary of VoterAddress entries for this voter.
{% 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
{% 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 %}