{% extends "base.html" %} {% load static %} {% block title %}Prescriptions - {{ block.super }}{% endblock %} {% block content %}

Prescription Management

{% for prescription in prescriptions %} {% empty %} {% endfor %}
Patient Medication Dosage Provider Prescribed Status Priority Actions
{{ prescription.patient.get_full_name }}
MRN: {{ prescription.patient.mrn }} • {{ prescription.patient.age }}y {{ prescription.patient.get_gender_display }}
{{ prescription.medication.name }} {% if prescription.medication.generic_name %}
{{ prescription.medication.generic_name }} {% endif %}
{{ prescription.dosage }} {{ prescription.dosage_unit }}
{{ prescription.frequency }} × {{ prescription.duration }} {{ prescription.duration_unit }}
{{ prescription.prescribing_provider.get_full_name }} {{ prescription.prescribed_datetime|date:"M d, Y H:i" }} {% 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 {% elif prescription.status == 'ON_HOLD' %} On Hold {% endif %} {% if prescription.priority == 'STAT' %} STAT {% elif prescription.priority == 'URGENT' %} Urgent {% elif prescription.priority == 'ROUTINE' %} Routine {% endif %}
{% if prescription.status == 'PENDING' %} {% elif prescription.status == 'VERIFIED' %} {% endif %}
No prescriptions found

No prescriptions match your current filters.

{% if is_paginated %} {% endif %}
{% for prescription in prescriptions %} {% if prescription.status == 'VERIFIED' %} {% endif %} {% endfor %} {% endblock %}