Are you sure you want to delete this specimen?
This action cannot be undone. The specimen and all associated data will be permanently removed from the system.
Patient Information
Patient: {{ object.patient.get_full_name }}
MRN: {{ object.patient.medical_record_number }}
DOB: {{ object.patient.date_of_birth|date:"M d, Y" }}
Age: {{ object.patient.age }} years
Specimen Information
Specimen ID: {{ object.specimen_id }}
Type: {{ object.get_specimen_type_display }}
Collection Date: {{ object.collection_date|date:"M d, Y g:i A" }}
Status:
{{ object.get_status_display }}
Collection Information
Collected By: {{ object.collected_by.get_full_name }}
Collection Site: {{ object.collection_site|default:"Not specified" }}
Volume: {{ object.volume|default:"Not specified" }}
Container: {{ object.container_type|default:"Standard" }}
Priority: {{ object.get_priority_display }}
Condition: {{ object.condition|default:"Good" }}
{% if associated_tests %}
Warning: This specimen has {{ associated_tests|length }} associated test(s).
Deleting this specimen will affect these tests and may impact patient care.
| Test Name |
Status |
Ordered Date |
Result Status |
{% for test in associated_tests %}
| {{ test.test.name }} |
{{ test.get_status_display }}
|
{{ test.ordered_date|date:"M d, Y" }} |
{% if test.result %}
Result Available
{% else %}
Pending
{% endif %}
|
{% endfor %}
{% endif %}
{% if object.collection_notes %}
Collection Notes
{{ object.collection_notes }}
{% endif %}