{% 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 %} Parent Label Aliquot Label Specimen Type Volume Volume Units Aliquoting Date Reason State Message {% endblock %} {% block table_body %} {% paginate rows %} {% show_pages %} {% for row in rows %} {{row.parent_label}} {{row.aliquot_label}} {{row.specimen_type}} {{row.volume}} {{row.volume_units}} {{row.aliquoting_date_yyyy}}-{{row.aliquoting_date_mm}}-{{row.aliquoting_date_dd}} {{row.aliquot_reason}} {{row.state}}
{{row.error_message}}
{% if row.state == 'error' %} {% endif %} {% endfor %} {% endblock %}