{# templates/issue/issue_partisan_analysis.html #} {% extends "template_base.html" %} {% block title %}Breakdown of Endorsements, by Partisan Leaning{% endblock %} {% block content %} {% load template_filters %} {% load humanize %}

Breakdown of Endorsements, by Partisan Leaning

We Vote Education is a certified nonpartisan 501(c)(3) organization (FEIN 47-2691544). This is a breakdown of the political leaning behind the endorsements we gather.

{% csrf_token %} {% if election_list %} {% else %} There is no data for upcoming elections.     {% endif %}{# End of if election_list #} {% if election_years_available %} {% endif %}{# End of if election_list #} {% if state_list %} {% endif %}{# End of if state_list #} {# Show Statistics for all We Vote elections ever? #}    

Endorsements Totals

{% if show_statistics_for_all_elections or google_civic_election_id or show_this_year_of_elections or state_code %} These are the totals, given the filters chosen above: {% if google_civic_election_id %}One Election   {% elif show_this_year_of_elections %}Limit to the Year {{ show_this_year_of_elections }}   {% endif %} {% if state_code %}Limit to {{ state_code_name }}   {% endif %} {% if show_statistics_for_all_elections %}Show Totals for All Elections   {% elif not google_civic_election_id and not show_this_year_of_elections %}Limit to Upcoming Elections   {% endif %} {% else %} These are the totals for upcoming elections. {% endif %}

{{ total_endorsement_count|intcomma }} Endorsements from Organizations or Public Figures

{{ total_endorsement_with_commentary_count|intcomma }} Endorsements with Explanations

{# ##################################################################### #} {# ################### Organizations / Public Figures################### #} {# ##################################################################### #} {# ####################################################### #} {# ################### Values / Issues ################### #} {# ####################################################### #} {# ################### Left Leaning ################### #} {# ################### Other ################### #} {# ################### Right Leaning ################### #}

Percentage of Endorsements, by the Source's Political Leaning

{{ endorsement_percent_left|floatformat:1 }}% From Left-Leaning Sources

{{ endorsement_count_left|intcomma }} out of {{ total_endorsement_count|intcomma }} endorsements
{{ endorsement_with_commentary_count_left|intcomma }} of those {{ endorsement_count_left|intcomma }} endorsements have explanations

 

{{ endorsement_percent_center|floatformat:1 }}% Other

{{ endorsement_count_center|intcomma }} out of {{ total_endorsement_count|intcomma }} endorsements
{{ endorsement_with_commentary_count_center|intcomma }} of those {{ endorsement_count_center|intcomma }} endorsements have explanations

 

{{ endorsement_percent_right|floatformat:1 }}% From Right-Leaning Sources

{{ endorsement_count_right|intcomma }} out of {{ total_endorsement_count|intcomma }} endorsements
{{ endorsement_with_commentary_count_right|intcomma }} of those {{ endorsement_count_right|intcomma }} endorsements have explanations

 

Organizations / Public Figures

These are all of the organizations who have made endorsements in the election(s) you are looking at. If they are tagged with a left-leaning value/issue, we put them in the "Left-Leaning" column. If they are tagged with a right-leaning value/issue, we put them in the "Right-Leaning" column. All others are in the "Other" column. We Vote invites all organizations and public figures to add their endorsements to We Vote.

{{ organization_percent_left|floatformat:1 }}% Left-Leaning ({{ organization_list_left|length }})

 

{{ organization_percent_center|floatformat:1 }}% Other ({{ organization_list_center|length }})

 

{{ organization_percent_right|floatformat:1 }}% Right-Leaning ({{ organization_list_right|length }})

{# ################### Left Leaning ################### #} {% if organization_list_left %} {% for organization in organization_list_left %} {% endfor %}
     
{{ forloop.counter }} {% if organization.we_vote_hosted_profile_image_url_medium %} {% endif %} {{ organization.organization_name }} {% if is_admin or is_political_data_manager %} {% endif %}
{{ organization.twitter_description }} {% for one_issue in organization_issues_lists|get_list_from_dict:organization.we_vote_id %} {% endfor %} {% if organization.twitter_followers_count %} ({{ organization.twitter_followers_count|intcomma }} Twitter Followers) {% endif %}
{% endif %}
  {# ################### Other ################### #} {% if organization_list_center %} {% for organization in organization_list_center %} {% endfor %}
     
{{ forloop.counter }} {% if organization.we_vote_hosted_profile_image_url_medium %} {% endif %} {{ organization.organization_name }} {% if is_admin or is_political_data_manager %} {% endif %}
{{ organization.twitter_description }} {% for one_issue in organization_issues_lists|get_list_from_dict:organization.we_vote_id %} {% endfor %} {% if organization.twitter_followers_count %} ({{ organization.twitter_followers_count|intcomma }} Twitter Followers) {% endif %}
{% endif %}
  {# ################### Right Leaning ################### #} {% if organization_list_right %} {% for organization in organization_list_right %} {% endfor %}
     
{{ forloop.counter }} {% if organization.we_vote_hosted_profile_image_url_medium %} {% endif %} {{ organization.organization_name }} {% if is_admin or is_political_data_manager %} {% endif %}
{{ organization.twitter_description }} {% for one_issue in organization_issues_lists|get_list_from_dict:organization.we_vote_id %} {% endfor %} {% if organization.twitter_followers_count %} ({{ organization.twitter_followers_count|intcomma }} Twitter Followers) {% endif %}
{% endif %}

Values / Issues

For each value/issue, how many of the organizations or public figures (who are endorsing in these election) are tagged with each issue?

Left-Leaning

 

Other

 

Right-Leaning

{% if issue_list_left %} {% for issue in issue_list_left %} {% endfor %}
    Issue/Category Name Endorsers Tagged
{{ forloop.counter }} {% if issue.issue_icon_local_path %} {% endif %} {{ issue.issue_name }}
{{ issue.issue_description }}
{{ issue.linked_organization_count }} {% if is_admin or is_political_data_manager %}   {% endif %}
{% endif %}
  {% if issue_list_center %} {% for issue in issue_list_center %} {% endfor %}
    Issue/Category Name Endorsers Tagged
{{ forloop.counter }} {% if issue.issue_icon_local_path %} {% endif %} {{ issue.issue_name }}
{{ issue.issue_description }}
{{ issue.linked_organization_count }} {% if is_admin or is_political_data_manager %}   {% endif %}
{% endif %}
  {% if issue_list_right %} {% for issue in issue_list_right %} {% endfor %}
    Issue/Category Name Endorsers Tagged
{{ forloop.counter }} {% if issue.issue_icon_local_path %} {% endif %} {{ issue.issue_name }}
{{ issue.issue_description }}
{{ issue.linked_organization_count }} {% if is_admin or is_political_data_manager %}   {% endif %}
{% endif %}

{% endblock %}