{% extends "cephia/row_info_base.html" %} {% load bootstrap3 %} {% load el_pagination_tags %} {% block filter_fields %} {% bootstrap_field filter_form.state %} {% bootstrap_field filter_form.has_comment %} {% endblock %} {% block filename %}{{file}}{% endblock %} {% block table_header %} Specimen Label Shipment Date Number of Containers Destination Site Specimen Type Volume Volume Units Shipped in Panel State Message {% endblock %} {% block table_body %} {% paginate rows %} {% show_pages %} {% for row in rows %} {{row.specimen_label}} {{row.shipment_date_yyyy}}-{{row.shipment_date_mm}}-{{row.shipment_date_dd}} {{row.number_of_containers}} {{row.destination_site}} {{row.specimen_type}} {{row.volume}} {{row.volume_units}} {{row.shipped_in_panel}} {{row.state}}
{{row.error_message}}
{% if row.state == 'error' %} {% bootstrap_icon "comment" %} {% endif %} {% endfor %} {% endblock %}