{# templates/import_export_batches/batch_process_log_entry_list.html #} {% extends "template_base.html" %} {% load tz %} {% block title %}Batch Process Log{% endblock %} {% block content %}

< Back to Batch Processes

Batch Process Log{% if batch_process_log_entry_list %} ({{ batch_process_log_entry_list|length }}){% endif %}

{% csrf_token %} {% if election_list %} {% if google_civic_election_id %} clear     {% endif %} {% endif %}{# End of if election_list #} {# Default to showing only upcoming elections #}     {% if state_list %} {% if state_code != "" %} show all states {% endif %} {% endif %} {# End of if state_list #}
{% if batch_process_log_entry_search %} clear search  {% endif %}     {# Limit to on Batch Process ID #}     {# Limit to on Batch Process Chunk ID #}     {% if batch_process_log_entry_search or batch_process_id or batch_process_chunk_id %} clear {% endif %}
{# End of organization_position_choose_election form #} {% if batch_process_log_entry_list %}
{% csrf_token %} {#
#} {#
#} {# #} {#
#} {#
#} {# #} {#
#} {#
#} {# #} {#
#} {#
#} {# Pass along the url_variables this page is using, so we can return to the same page state #} {% for batch_process_log_entry in batch_process_log_entry_list %} {% if forloop.counter == 1 or forloop.counter|divisibleby:16 %} {# Show the header every ~15 lines #} {% endif %} {% endfor %}
Date Process ID Chunk ID Set ID Kind of Process Election State Status
{{ batch_process_log_entry.date_added|localtime|default_if_none:"" }} {{ batch_process_log_entry.batch_process_id|default_if_none:"" }} {% if batch_process_log_entry.batch_process_ballot_item_chunk_id %} {{ batch_process_log_entry.batch_process_ballot_item_chunk_id|default_if_none:"" }} {% elif batch_process_log_entry.batch_process_representatives_chunk_id %} {{ batch_process_log_entry.batch_process_representatives_chunk_id|default_if_none:"" }} {% endif %} {{ batch_process_log_entry.batch_set_id|default_if_none:"" }} {{ batch_process_log_entry.kind_of_process }} {{ batch_process_log_entry.google_civic_election_id|default_if_none:"" }} {{ batch_process_log_entry.state_code|default_if_none:"" }} {{ batch_process_log_entry.status|default_if_none:"" }}

{% else %}

(no log entries found)

{% endif %} {% endblock %}