{% extends "base.html" %} {% load staticfiles %} {% load bootstrap3 %} {% load el_pagination_tags %} {% block content %}
{% include "cephia/_top_navigation.html" %}
{% include "cephia/_navigation.html" %}
{% block left_menu %} {% endblock %}
{% comment %} {% block filter_content %}

Filter

{% block filter_col_a %} {% endblock %}
{% block filter_col_b %} {% endblock %}
{% block filter_col_c %} {% endblock %}
{% block filter_col_d %} {% endblock %}
{% bootstrap_button "Filter" button_type="submit" button_class="btn-primary" %}
{% endblock %} {% endcomment %}
{% block info_content %} {% endblock %}
{% block page_content %} {% paginate subjects %} {% show_pages %}
{% for subject in subjects %}

Subject - {{subject.subject.subject_label}}

{% csrf_token %}
Specimen - Visits
{% for spec in subject.specimens_with_visits %} {% endfor %} {% for spec in subject.specimens_with_prov_visits %} {% endfor %} {% for spec in subject.specimens_without_visits %} {% endfor %} {% if subject.specimens_without_visits %} {% for visit in subject.visits %} {% endfor %} {% endif %}
Specimen Reported Draw Date Specimen Type Subject Label Visit Date
{{spec.specimen_label}} {{spec.reported_draw_date}} {{spec.specimen_type.name}} {{spec.visit.subject_label}} {{spec.visit.visit_date}}
{{spec.specimen_label}} {{spec.reported_draw_date}} {{spec.specimen_type.name}} {{spec.visit.subject_label}} {{spec.visit.visit_date}} {% bootstrap_icon "link" %}
{{spec.specimen_label}} {{spec.reported_draw_date}} {{spec.specimen_type.name}}
{{visit.subject_label}} {{visit.visit_date}}
{% if subject.specimens_without_visits %}
{% endif %} {% if subject.specimens_without_visits %}
{% endif %} {% if subject.specimens_with_prov_visits %}
{% endif %}
{% endfor %}
{% endblock %}
{% endblock %}