{% extends 'hod_templates/base_template.html'%} {% load static %} {% block page_title %}
All patients
{% endblock page_title %} {% block main_content %}
{% if messages %}
{% for message in messages %} {% if message.tags == "error" %} {% elif message.tags == "success" %} {% endif %} {% endfor %}
{% endif %}
Patiets Records
{% for patient in patients %} {% endfor %}
No Profile UserName LastName Email Mobile Last Login Action
{{patient.admin.id}} {{patient.admin}} {{patient.admin.last_name}} {{patient.admin.email}} {{patient.phone_number}} {{patient.admin.last_login}} Edit Delete View
{% endblock %}