QC Sample: {{ qc_sample.sample_id }}
Back to List
{% if qc_sample.status == 'pending' or qc_sample.status == 'in_progress' %}
Enter Result
{% endif %}
Sample Information
Sample Details
| Sample ID: | {{ qc_sample.sample_id }} |
| Test Type: | {{ qc_sample.test_type.name }} |
| QC Level: | {{ qc_sample.get_qc_level_display }} |
| Status: | {{ qc_sample.get_status_display }} |
Timing Information
| Created: | {{ qc_sample.created_at|date:"M d, Y H:i" }} |
| Run Date: | {{ qc_sample.run_date|date:"M d, Y" }} |
| Run Time: | {{ qc_sample.run_time|time:"H:i" }} |
| Completed: | {{ qc_sample.completed_at|date:"M d, Y H:i" }} |
Lot Information
| Lot Number: | {{ qc_sample.lot_number }} |
| Expiry Date: | {{ qc_sample.expiry_date|date:"M d, Y" }} |
| Expected Range: | {{ qc_sample.expected_range|default:"Not specified" }} |
Personnel
| Created By: | {{ qc_sample.created_by.get_full_name }} |
| Technician: | {{ qc_sample.technician.get_full_name|default:"Not assigned" }} |
| Reviewed By: | {{ qc_sample.reviewed_by.get_full_name }} |
Comments
{{ qc_sample.comments }}
QC Results
{{ qc_sample.result_value }} {{ qc_sample.unit }}
Measured Value
{{ qc_sample.expected_range }}
Expected Range
{{ qc_sample.get_result_status_display }}
Result Comments:
{{ qc_sample.result_comments }}
Activity Timeline
{% for activity in qc_sample.activities.all %}
{% empty %}
{% endfor %}
{{ activity.action }}
{{ activity.description }}
by {{ activity.user.get_full_name }} - {{ activity.created_at|date:"M d, Y H:i" }}
{{ activity.get_action_display }}
No activity recorded yet.
Quick Actions
{% if qc_sample.status == 'pending' or qc_sample.status == 'in_progress' %}
Enter Result
{% endif %}
{% if qc_sample.status == 'pending' %}
{% endif %}
{% if qc_sample.status == 'completed' and not qc_sample.reviewed_by %}
{% endif %}
Related QC Samples
{% for related_sample in related_qc_samples %}
{% empty %}
{% endfor %}
{{ related_sample.sample_id }}
{{ related_sample.run_date|date:"M d, Y" }}
No related QC samples found.