{% extends 'dashboard_screen/base.html' %}
{% block content %}
Please Select a look for a Patient or Create a New One
{% if Patients %}
| External ID |
Full Name |
DOB |
SSN |
Actions |
{% for patient in Patients %}
{% if forloop.counter|divisibleby:2 %}
| {{ patient.ext_id }} |
{{ patient.first_name }} {{ patient.last_name }} |
{{ patient.dob |date:"m/d/Y" }} |
{{ patient.show_SSN }} |
|
{% else %}
| {{ patient.ext_id }} |
{{ patient.first_name }} {{ patient.last_name }} |
{{ patient.dob |date:"m/d/Y" }} |
{{ patient.show_SSN }} |
|
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}