{% extends "base.html" %} {% load static %} {% block title %}{% if object %}Edit Specimen{% else %}New Specimen{% endif %}{% endblock %} {% block content %}

{% if object %}Edit Specimen - {{ object.specimen_id }}{% else %}New Specimen Collection{% endif %}

Back to Specimens

Specimen Information

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %}
{% if form.patient.errors %}
{{ form.patient.errors.0 }}
{% endif %}
{% if form.specimen_id.errors %}
{{ form.specimen_id.errors.0 }}
{% endif %}
{% if form.specimen_type.errors %}
{{ form.specimen_type.errors.0 }}
{% endif %}
{% if form.collection_site.errors %}
{{ form.collection_site.errors.0 }}
{% endif %}
{% if form.volume.errors %}
{{ form.volume.errors.0 }}
{% endif %}
{% if form.collection_date.errors %}
{{ form.collection_date.errors.0 }}
{% endif %}
{% if form.collected_by.errors %}
{{ form.collected_by.errors.0 }}
{% endif %}
{% if form.container_type.errors %}
{{ form.container_type.errors.0 }}
{% endif %}
{% if form.storage_temperature.errors %}
{{ form.storage_temperature.errors.0 }}
{% endif %}
{% if form.priority.errors %}
{{ form.priority.errors.0 }}
{% endif %}
{% if form.status.errors %}
{{ form.status.errors.0 }}
{% endif %}
{% if form.condition.errors %}
{{ form.condition.errors.0 }}
{% endif %}
{% if form.expiry_date.errors %}
{{ form.expiry_date.errors.0 }}
{% endif %}
{% if form.collection_method.errors %}
{{ form.collection_method.errors.0 }}
{% endif %}
{% if form.current_location.errors %}
{{ form.current_location.errors.0 }}
{% endif %}
{% if form.fasting_status.errors %}
{{ form.fasting_status.errors.0 }}
{% endif %}
{% if form.requires_special_handling.errors %}
{{ form.requires_special_handling.errors.0 }}
{% endif %}
{% if form.collection_notes.errors %}
{{ form.collection_notes.errors.0 }}
{% endif %}
{% if object %} Cancel {% else %} Cancel {% endif %}
Collection Guidelines

Select a specimen type to view collection guidelines.

Container Guide
Red Top

No additive - for serum chemistry tests

Lavender Top

EDTA - for hematology tests

Green Top

Heparin - for plasma chemistry

Blue Top

Citrate - for coagulation studies

Quick Actions
{% endblock %}