{% if data.json_render is defined and data.render_json == True %} {% extends 'base_json.html' %} {% else %} {% extends 'base.html' %} {% endif %} {% block plugin_content %}

Batch correction dashboard for {{ data.saved_query.name }}

{% if data.sr_committed_batch_correction_task_run %}
Committed SR batch correction {{ data.sr_committed_batch_correction_task_run.id | pprint }}
{% endif %} {% for task_run in data.sr_uncommitted_batch_correction_task_runs %} {% include 'batch_correction/batch_correction_run.html' %} {% endfor %}
{% if data.ltr_committed_batch_correction_task_run %}
Committed LTR batch correction {{ data.ltr_committed_batch_correction_task_run.id | pprint }}
{% endif %} {% for task_run in data.ltr_uncommitted_batch_correction_task_runs %} {% include 'batch_correction/batch_correction_run.html' %} {% endfor %}
{% endblock %} {% block tail %} {{ super() }} {% endblock %}