{% extends 'dashboard_screen/base.html' %} {% block content %}

All Patients

{% if Patients %}
{% for patient in Patients %} {% if forloop.counter|divisibleby:2 %} {% else %} {% endif %} {% endfor %}
External ID Full Name DOB SSN Actions
{{ patient.ext_id }} {{ patient.first_name }} {{ patient.last_name }} {{ patient.dob }} {{ patient.show_SSN }}
{{ patient.ext_id }} {{ patient.first_name }} {{ patient.last_name }} {{ patient.dob }} {{ patient.show_SSN }}
{% endif %}
{% endblock %}