{% extends "base.html" %} {% load static %} {% block title %}Pharmacy Dashboard - {{ block.super }}{% endblock %} {% block content %}
Pending Prescriptions
Ready to Dispense
Low Stock Items
Expired Items
| Patient | Medication | Provider | Status | Priority | Actions |
|---|---|---|---|---|---|
|
{{ prescription.patient.first_name.0 }}{{ prescription.patient.last_name.0 }}
{{ prescription.patient.get_full_name }}
MRN: {{ prescription.patient.mrn }}
|
{{ prescription.medication.generic_name }}
{% if prescription.medication.brand_name %}
{{ prescription.medication.brand_name }}
{% endif %}
{{ prescription.dosage_instructions|truncatechars:30 }} |
{{ prescription.prescriber.get_full_name }}
{{ prescription.date_prescribed|date:"M d, Y" }}
|
{% if prescription.status == 'PENDING' %} Pending {% elif prescription.status == 'VERIFIED' %} Verified {% elif prescription.status == 'IN_PROGRESS' %} In Progress {% elif prescription.status == 'DISPENSED' %} Dispensed {% elif prescription.status == 'CANCELLED' %} Cancelled {% else %} {{ prescription.get_status_display }} {% endif %} | {% if prescription.priority == 'STAT' %} STAT {% elif prescription.priority == 'URGENT' %} Urgent {% elif prescription.priority == 'ROUTINE' %} Routine {% else %} {{ prescription.get_priority_display }} {% endif %} |