{% extends 'pharmacist_templates/base_template.html'%} {% block page_title %}
All patients
{% endblock page_title %} {% block link %} {% endblock link %} {% block main_content %}
Patiets Records
{% csrf_token %}
{% include 'pharmacist_templates/alert_messeges.html' %} {% for patient in patients %} {% endfor %}
No UserName FirstName LastName Gender Email Mobile Action
{{forloop.counter}} {{patient.admin.username}} {{patient.first_name}} {{patient.last_name}} {{patient.gender}} {{patient.admin.email}} {{patient.phone_number}} Dispense
{% endblock %}