{% extends 'base.html' %} {% load static %} {% block title %}Issue Blood Unit - Request #{{ blood_request.request_number }}{% endblock %} {% block css %} {% endblock %} {% block content %}

Issue Blood Unit Request #{{ blood_request.request_number }} {% if blood_request.urgency == 'emergency' %} EMERGENCY {% endif %}

Blood Unit Issue

Request: {{ blood_request.request_number }}
{% csrf_token %}
Blood Request Information
Request Number: {{ blood_request.request_number }}
Patient: {{ blood_request.patient.full_name }} ({{ blood_request.patient.patient_id }})
Blood Group: {{ blood_request.patient.blood_group.display_name }}
Component Requested: {{ blood_request.component.get_name_display }}
Quantity: {{ blood_request.quantity_requested }} units
Urgency: {{ blood_request.get_urgency_display }}
Requested By: {{ blood_request.requested_by.get_full_name }}
Department: {{ blood_request.department.name }}
{% if blood_request.special_requirements %}
Special Requirements:
{{ blood_request.special_requirements }}
{% endif %}
Available Blood Units

Select compatible blood units for this request. Units are filtered by blood group compatibility and availability.

{% for unit in available_units %}
{{ unit.unit_number }}
Blood Group:
{{ unit.blood_group.display_name }}
Component:
{{ unit.component.get_name_display }}
Volume:
{{ unit.volume_ml }} ml
Expiry:
{{ unit.expiry_date|date:"M d, Y" }} {% if unit.days_to_expiry <= 3 %} Expires Soon {% endif %}
Donor:
{{ unit.donor.full_name }}
Collection:
{{ unit.collection_date|date:"M d, Y" }}
Location:
{{ unit.location.name }}
{% if unit.is_compatible %} Compatible {% else %} Check Required {% endif %}
{% if unit.crossmatch_status %}
Crossmatch: {{ unit.crossmatch_status|title }}
{% endif %}
{% empty %}
No compatible blood units available for this request.
Please check inventory or contact blood bank supervisor.
{% endfor %}
Issue Details
Transport Information
Pre-Issue Verification Checklist
Unit Verification
Documentation & Testing
Emergency Procedures (if applicable)
Special Instructions & Notes
Issue Summary

Select blood units and complete the form to preview issue details

Cancel
{% endblock %} {% block js %} {% endblock %}