{% extends "cephia/base.html" %} {% load bootstrap3 %} {% load el_pagination_tags %} {% block submit_action %} {% url 'specimen' %} {% endblock %} {% block filter_col_a %} {% bootstrap_field form.specimen_label %} {% endblock %} {% block filter_col_b %} {% bootstrap_field form.reported_draw_date %} {% endblock %} {% block filter_col_c %} {% bootstrap_field form.transfer_in_date %} {% endblock %} {% block filter_col_d %} {% bootstrap_field form.transfer_out_date %} {% endblock %} {% block page_content %} {% paginate specimen %}
{% csrf_token %} {% bootstrap_form download_form %}
Preview Specimens

The preview does not work with data in uploaded files and only shows the first 25 results to reduce processing time

Specimen

{% for spec in specimen %} {% endfor %}
Specimen Label Parent Label Number of Containers Draw Date Transfer in Date Transfer out Date Modified Date Created Date Reason Specimen Type Volume Initial Claimed Volume Shipped To Source Study Aliquoting Reason Available
{{spec.specimen_label}} {% if spec.parent_label %}{{spec.parent_label}} {% endif %} {% if spec.number_of_containers %}{{spec.number_of_containers}}{% endif %} {% if spec.reported_draw_date %} {% if spec.visit %} {{spec.reported_draw_date}} {% else %} {{spec.reported_draw_date}} {% endif %} {% endif %} {% if spec.transfer_in_date %}{{spec.transfer_in_date}}{% endif %} {% if spec.transfer_out_date %}{{spec.transfer_out_date}}{% endif %} {% if spec.modified_date %}{{spec.modified_date}}{% endif %} {% if spec.created_date %}{{spec.created_date}}{% endif %} {% if spec.transfer_reason %}{{spec.transfer_reason}}{% endif %} {{spec.specimen_type.name}} {{spec.volume}} {% if spec.initial_claimed_volume %}{{spec.initial_claimed_volume}}{% endif %} {{spec.receiving_site.name}} {% if spec.source_study %}{{spec.source_study}}{% endif %} {{spec.aliquoting_reason.name}} {% if spec.is_available %}{% bootstrap_icon "ok" %}{% else %}{% bootstrap_icon "remove" %}{% endif %}
{% endblock %}