{% extends 'dashboard_screen/base.html' %} {% block content %}
{% if Entries %}

All Pendign Exams

{% if Entries %} {% for Entry in Entries %} {% if Entry.accession_number.all %} {% for accesion in Entry.accession_number.all %} {% if accesion.exam_in.exam_casetype.case_type_id == 1 and accesion.GYN_completed == 1 %} {% elif accesion.exam_in.exam_casetype.case_type_id == 2 and accesion.Non_gyn_completed == 1 %} {% elif accesion.exam_in.exam_casetype.case_type_id == 3 and accesion.MP_completed == 1 %} {% elif accesion.exam_in.exam_casetype.case_type_id == 4 and accesion.SP_completed == 1 %} {% endif %} {% endfor %} {% endif %} {% endfor %} {% endif %}
Accession ID Exam Type Lab-ID Patient Client Collected date Created date Actions
{{ accesion.accession_number }} {{ accesion.exam_in.exam_casetype.case_type_name |upper}} {{ Entry.lab_id }} {{ Entry.patient.full_name }} {{ Entry.patient.patient_client.get_full_name }} {{ Entry.collection_date |date:"m/d/Y" }} {{ Entry.created_date |date:"m/d/Y"}} {% if user.profile.get_group_id == 4 or user.profile.get_group_id == 1 %} {% endif %}
{{ accesion.accession_number }} {{ accesion.exam_in.exam_casetype.case_type_name |upper}} {{ Entry.lab_id }} {{ Entry.patient.full_name }} {{ Entry.patient.patient_client.get_full_name }} {{ Entry.collection_date |date:"m/d/Y" }} {{ Entry.created_date |date:"m/d/Y"}} {% if user.profile.get_group_id == 4 or user.profile.get_group_id == 1 %} {% endif %}
{{ accesion.accession_number }} {{ accesion.exam_in.exam_casetype.case_type_name |upper}} {{ Entry.lab_id }} {{ Entry.patient.full_name }} {{ Entry.patient.patient_client.get_full_name }} {{ Entry.collection_date |date:"m/d/Y" }} {{ Entry.created_date |date:"m/d/Y"}} {% if user.profile.get_group_id == 4 or user.profile.get_group_id == 1 %} {% endif %}
{{ accesion.accession_number }} {{ accesion.exam_in.exam_casetype.case_type_name |upper}} {{ Entry.lab_id }} {{ Entry.patient.full_name }} {{ Entry.patient.patient_client.get_full_name }} {{ Entry.collection_date |date:"m/d/Y" }} {{ Entry.created_date |date:"m/d/Y"}} {% if user.profile.get_group_id == 4 or user.profile.get_group_id == 1 %} {% endif %}
{% endif %}
{% endblock %}