{% if data.sr_committed_batch_correction_task_run.reports %}
{% if 'batch correction assessment' in data.sr_committed_batch_correction_task_run.reports %}
{% for key, value in data.sr_committed_batch_correction_task_run.args.items() %}
{% if key not in ['intensity_data','sample_metadata','feature_metadata','query_factory_dict','query_factory_factory'] %}
{{ key }}: {{ value }}
{% endif %}
{% endfor %}
{% 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 %}
{% if data.ltr_committed_batch_correction_task_run.reports %}
{% if 'batch correction assessment' in data.ltr_committed_batch_correction_task_run.reports %}
{% for key, value in data.ltr_committed_batch_correction_task_run.args.items() %}
{% if key not in ['intensity_data','sample_metadata','feature_metadata','query_factory_dict','query_factory_factory'] %}
{{ key }}: {{ value }}
{% endif %}
{% endfor %}
{% endif %}
{% for task_run in data.ltr_uncommitted_batch_correction_task_runs %}
{% include 'batch_correction/batch_correction_run.html' %}
{% endfor %}