{% extends "base.html" %} {% load static %} {% block title %}Specimen Details - {{ object.specimen_id }}{% endblock %} {% block content %}
| Specimen ID: | {{ object.specimen_id }} |
| Patient: | {{ object.patient.get_full_name }} |
| MRN: | {{ object.patient.medical_record_number }} |
| Type: | {{ object.get_specimen_type_display }} |
| Collection Date: | {{ object.collection_date|date:"M d, Y g:i A" }} |
| 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 }} |
| Test Name | Code | Status | Ordered Date | Result | Actions |
|---|---|---|---|---|---|
|
{{ test.test.name }}
{{ test.test.category }}
|
{{ test.test.code }} | {{ test.get_status_display }} | {{ test.ordered_date|date:"M d, Y" }} | {% if test.result %} {{ test.result.result_value }} {{ test.result.unit|default:"" }} {% if test.result.abnormal_flag %} {{ test.result.get_abnormal_flag_display }} {% endif %} {% else %} Pending {% endif %} |
No tests have been ordered for this specimen yet.
{{ event.description|default:"Status updated" }}
By: {{ event.user.get_full_name|default:"System" }} {% if event.location %}No tracking events recorded for this specimen.