{% extends 'pharmacist_templates/base_template.html'%} {% block page_title %}
All patients
{% endblock page_title %} {% block link %} {% endblock link %} {% block main_content %}
{% if messages %}
{% for message in messages %} {% if message.tags == "error" %} {% elif message.tags == "success" %} {% endif %} {% endfor %}
{% endif %}
Patiets Records
{% for prescrip in prescrips %} {% endfor %}
ID Patient FullName Dispensed Drug Dispensed Quantity Instructions Date Precribed Action
{{prescrip.id}} {{prescrip.patient_id.first_name}}       {{prescrip.patient_id.last_name}} {{prescrip.drug_id}} {{prescrip.dispense_quantity}} {{prescrip.instructions}} {{prescrip.dispense_at}} Delete
{% endblock %}