{% extends 'patient_templates/base_template.html'%} {% block page_title %}
All patients
{% endblock page_title %} {% block link %} {% endblock link %} {% block main_content %}
{% include 'patient_templates/alert_messeges.html' %}
Patiets Records
{% csrf_token %}
{% for prescrip in prescrips %} {% endfor %}
No FirstName LastName Description Precription Date Precribed Action
{{forloop.counter}} {{prescrip.patient_id.first_name}} {{prescrip.patient_id.last_name}} {{prescrip.description}} {{prescrip.prescribe}} {{prescrip.date_precribed}} Delete Edit
{% endblock %}