{% extends "base/base.html" %} {% block content %}

{% include "batch/status.html" %}

{% if batch.has_error %} {% else %} {% endif %}
{% if batch.has_error %}

Alerts

{% for error in batch.logs.errors %} {% endfor %}
Message
{{ error }}
{% endif %} {% if batch.image_set.count > 0 %}
{% for image in batch.image_set.all %} {% endfor %}
UID Added Modified Status
{{ image.uid }} {{ image.add_date }} {{ image.modify_date }} {% include "batch/image_status.html" %}
{% else %}

There are no images in this batch.

{% endif %}
{% endblock %}