{% extends "base.html" %} {% load static %} {% block title %}Prescriptions - Pharmacy{% endblock %} {% block content %}
|
|
Prescription # | Patient | Prescriber | Medication | Status | Priority | Date Prescribed | Due Date | Actions |
|---|---|---|---|---|---|---|---|---|---|
|
|
{{ prescription.prescription_number }} {% if prescription.is_controlled %} {% endif %} |
{{ prescription.patient.patient_id }}
|
{{ prescription.prescriber.get_full_name }}
{{ prescription.prescriber.specialty|default:"General" }}
|
{{ prescription.medication.name }}
{{ prescription.dosage }} {{ prescription.dosage_unit }}
{% if prescription.frequency %}
- {{ prescription.frequency }}
{% endif %}
Qty: {{ prescription.quantity }}
|
{{ prescription.get_status_display }}
{% if prescription.is_overdue %}
Overdue
{% endif %}
|
{{ prescription.get_priority_display }} |
{{ prescription.date_prescribed|date:"M d, Y" }}
{{ prescription.date_prescribed|date:"H:i" }}
|
{% if prescription.due_date %}
{{ prescription.due_date|date:"M d, Y" }}
{{ prescription.due_date|date:"H:i" }}
{% else %}
No due date
{% endif %}
|
|
|
No prescriptions found
Try adjusting your search criteria or add a new prescription
|
|||||||||