{# templates/voter_guide/voter_guide_possibility_list.html #} {% extends "template_base.html" %} {% block title %}Voter Guide Possibilities to Approve{% endblock %} {% block content %} {% load template_filters %}

Voter Guide Possibilities

{% if filtered_by_title %}

{{ filtered_by_title }}

{% endif %}
{% csrf_token %} {% if election_list %} {% else %} (no elections found) {% endif %} {# Default to showing only upcoming elections #}         {% if voter_guide_possibility_search %} clear search  {% endif %} {# Pass along the url_variables this page is using, so we can return to the same page state #}

Filters:  {# Return to see voter guides to review #} To Review ({{ to_review_count }})     {# Show voter guides suggested from prior elections #} From Prior Elections ({{ from_prior_election_count }})     {# Show voter guides where we previously couldn't find endorsements #} Endorsements Not Available Yet ({{ cannot_find_endorsements_count }})     {# Show voter guides where we don't have the matching candidates or measures in our database #} Candidates/Measures Missing ({{ candidates_missing_count }})     {# Show voter guides where we have more work to do if we want to capture more detailed comments #} Capture Detailed Comments ({{ capture_detailed_comments_count }})     {# Return to see voter guides to review #} Stop Reviewing     {# Show voter guides where we ignore the source #} Ignore this Website
{% csrf_token %} {# Filter the voter guides possibilities: Only show the ones owned by a particular person #}
   
{% if voter_guide_possibility_list %} {# Reassign voter guides possibilities to one political data manager #}
{% if not hide_pagination %} {% if current_page_number > 0 %}Previous page |{% endif %} Page {{ current_page_number|add:1 }} | Next page {% endif %}
{% include "voter_guide/voter_guide_possibility_table.html" with voter_guide_possibility_list=voter_guide_possibility_list google_civic_election_id=google_civic_election_id starting_counter_number=starting_counter_number %} {% else %}

(no voter guide possibilities found)

{% endif %} {# Pass along the url_variables this page is using, so we can return to the same page state #}
{% if not hide_pagination %} {% if current_page_number > 0 %}Previous page |{% endif %} Page {{ current_page_number|add:1 }} | Next page {% endif %}



"To Review" means: These are suggested voter guides (endorsements collected onto one page) that need to be looked at.

"Endorsements Not Available Yet" means: This organizations hasn't posted their endorsements for the upcoming election yet, but it is worth coming back to this website later to find endorsements when they are posted.

"Candidates/Measures Missing" means: Our voter guide scraping tool isn't retrieving all of the candidates or measures from the website. Further research is needed to see if we need to add the missing candidates or measures.

"Capture Detailed Comments" means: There are detailed comments under each candidate or measure, and/or a unique link to the more detailed commentary for each candidate or measure that we can capture.

"Archived" means: We have extracted all of the data that we can from these Voter Guide Possibilities.





{% endblock %}