{% extends 'clerk_templates/base_template.html'%} {% 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" %}
Well done! {{message}}
{% endif %} {% endfor %}
{% endif %}
Patients Details
{% for patient in patients %} {% endfor %}
No Pic UserName FirstName LastName Email Mobile Address Action
{{forloop.counter}} {{patient.admin.username}} {{patient.admin.first_name}} {{patient.admin.last_name}} {{patient.admin.email}} {{patient.phone_number}} {{patient.address}} Edit Delete View
{% endblock %}