{# templates/import_export_batches/batch_set_batch_list.html #} {% extends "template_base.html" %} {% block title %}List of Batches in one Batch Set{% endblock %} {% block content %} {% load template_filters %}

< Back to Import Batches Index

List of Batches in one Batch Set

{% csrf_token %}
{% if batch_list %} {% for one_batch in batch_list %} {% endfor %}
# Batch Name Action Election Batch Rows Imported Batch Rows Analyzed Date Created Batch Row Actions To Create To Update To Delete / Deleted Duplicate
{{ forloop.counter }} {{ one_batch.batch_name }}{% if one_batch.polling_location_we_vote_id %} ({{ one_batch.polling_location_we_vote_id }}){% endif %} review {% for election in election_list %} {% if election.google_civic_election_id|slugify == one_batch.google_civic_election_id|slugify %} {{ election.election_name }} - {{ election.google_civic_election_id }} - {{ election.election_day_text }} {% endif %} {% endfor %} {{ one_batch.number_of_batch_rows_imported }} {% if one_batch.number_of_batch_rows_analyzed %}{{ one_batch.number_of_batch_rows_analyzed }}{% endif %} {{ one_batch.date_created }} {% if one_batch.number_of_batch_actions_to_create %}{{ one_batch.number_of_batch_actions_to_create }}{% endif %} {% if one_batch.number_of_table_rows_to_update %}{{ one_batch.number_of_table_rows_to_update }}{% endif %} {% if one_batch.number_of_table_rows_to_delete or one_batch.number_of_table_rows_already_deleted %} {% if one_batch.number_of_table_rows_to_delete %}{{ one_batch.number_of_table_rows_to_delete }}{% else %}0{% endif %} / {% if one_batch.number_of_table_rows_already_deleted %}{{ one_batch.number_of_table_rows_already_deleted }}{% else %}0{% endif %} {% endif %} {% if one_batch.number_of_batch_actions_cannot_act %}{{ one_batch.number_of_batch_actions_cannot_act }}{% endif %}

{% if not show_all_batches %} Show all Batches (this can take 50-90 seconds) {% endif %}




{% else %}





(no batches found)

{% endif %} {% endblock %}