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

New Case

Please Select a look for a Patient or Create a New One

{% csrf_token %}
Look for Patient External-ID:
First Name:
Last Name:
{{ message }}
{% if Patients %}

Result

{% 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 |date:"m/d/Y" }} {{ patient.show_SSN }}
{% csrf_token %}
{{ patient.ext_id }} {{ patient.first_name }} {{ patient.last_name }} {{ patient.dob |date:"m/d/Y" }} {{ patient.show_SSN }}
{% csrf_token %}
{% endif %}
{% endblock %}