💊 Prescription Management
Add Prescription
Appointment:
{% for a in appointments %}
#{{ a.appointment_id }}
{% endfor %}
Medicine:
Notes:
➕ Add Prescription
Search Prescription by Patient
🔍 Search
Existing Prescriptions
{% for p in prescriptions %}
#{{ p.prescription_id }}
-
{{ p.patient }}
(Dr. {{ p.doctor }})
💊
{{ p.medicine }}
{% if p.notes %}| 📝 {{ p.notes }}{% endif %}
{% endfor %}