{# templates/analytics/sitewide_voter_metrics.html #} {% extends "template_base.html" %} {% block title %} Sitewide Voter Metrics {% endblock %} {% block content %} {% load template_filters %}

< Analytics Home

Sitewide Voter Metrics

Show the most recent voters who have visited site and the major steps they've completed.

{#

Manually Update Metrics

#} {#

This script finds all of the voters active between these dates.#} {# For each of these voters we update their statistics to their totals through today.#} {# Note that the start and through dates are only used to choose which voters were active during those dates, so#} {# we know to update them. If a voter's statistics were already updated today, they are not updated again.#} {#

#} {##} {#
#} {# {% csrf_token %}#} {# #} {# #} {##} {#
#} {# #} {#
#} {# #} {#
#} {#
#} {#
#} {# #} {#
#} {# #} {# #} {# Augment Voter Data First#} {#
#} {#
#} {##} {#
#} {# #} {#
#} {# #} {#
#} {#
#} {#
#}
{% csrf_token %}
{{ start_date|default_if_none:"" }}

{{ through_date|default_if_none:"" }}




{% include "analytics/sitewide_voter_metrics_table.html" with sitewide_voter_metrics_list=sitewide_voter_metrics_list %} {% endblock %}