{# templates/import_export_batches/batch_set_list.html #} {% extends "template_base.html" %} {% block title %}Batch Set List{% endblock %} {% block content %} {% load template_filters %}

< Back to Import Batches Index

Batch Set List

We have a design that shows all of the import steps in this process. See chart here.

{% csrf_token %} {% if election_list %}
{# Limit to on Batch Set ID #} {% if batch_set_id %} clear {% endif %}     {# Limit to on Batch Process ID #} {% if batch_process_id %} clear {% endif %}     {# Limit to on State Code #} {% if state_code %} clear {% endif %}        
{% endif %}{# End of if election_list #}
{% if batch_set_list %} {% for one_batch_set in batch_set_list %} {% endfor %}
# Batch Name Process ID Batch Set ID Election To be Analyzed To be Created To Delete / Deleted Total Records Date Created
{{ forloop.counter }} {{ one_batch_set.batch_set_name }} {{ one_batch_set.batch_process_id }} go {{ one_batch_set.id }} details {% for election in election_list %} {% if election.google_civic_election_id|slugify == one_batch_set.google_civic_election_id|slugify %} {{ election.election_name }} - {{ election.google_civic_election_id }} - {{ election.election_day_text }} {% endif %} {% endfor %} {% if one_batch_set.batch_description_not_analyzed_count > 0 %}{{ one_batch_set.batch_description_not_analyzed_count }}{% endif %} {% if one_batch_set.batch_description_not_created_count > 0 %}{{ one_batch_set.batch_description_not_created_count }}{% endif %} {% if one_batch_set.batch_description_to_delete_count or one_batch_set.batch_description_already_deleted_count %} {% if one_batch_set.batch_description_to_delete_count %}{{ one_batch_set.batch_description_to_delete_count }}{% else %}0{% endif %} / {% if one_batch_set.batch_description_already_deleted_count %}{{ one_batch_set.batch_description_already_deleted_count }}{% else %}0{% endif %} {% endif %} {% if not show_status_statistics %}(Check "Show Status Statistics" to show){% endif %} {% if one_batch_set.batch_description_total_rows_count > 0 %}{{ one_batch_set.batch_description_total_rows_count }}{% endif %} {{ one_batch_set.import_date }}

{% else %}





(no batches found)

{% endif %} {% endblock %}