{# templates/polling_location/polling_location_statistics.html #} {% extends "template_base.html" %} {% block title %}Map Points Statistics{% endblock %} {% block content %} {% load humanize %}

Map Points Statistics

Go to "Import Map Points From Master Server" Page

Create map point, See Electoral Districts

{% csrf_token %} {% if state_details_list %} {% for one_state in state_details_list %} {% endfor %}
State Number of Map Points State Population Avg People Per Map Point Missing Lat/Long
{{ forloop.counter }} {{ one_state.state_code }} - {{ one_state.state_name }} (go) {{ one_state.polling_location_count|intcomma }} {{ one_state.state_population|intcomma }} {{ one_state.average_people_per_map_point|intcomma }} {{ one_state.polling_location_without_latitude_count }}
{% else %}

(no states found)

{% endif %}
{% endblock %}