{% extends "base.html" %} {% load static %} {% block title %}{{ patient.get_full_name }} - Patient Details - {{ block.super }}{% endblock %} {% block content %}

{{ patient.get_full_name }}

MRN: {{ patient.mrn }} {{ patient.get_gender_display }} Age: {{ patient.age }} {% if patient.is_vip %} VIP {% endif %} {% if patient.status == 'ACTIVE' %} Active {% elif patient.status == 'INACTIVE' %} Inactive {% elif patient.status == 'DECEASED' %} Deceased {% endif %}
{% if patient.photo %} Patient Photo {% else %}
{% endif %}
{{ patient.get_full_name }}

{{ patient.get_gender_display }} • {{ patient.age }} years old

{{ patient.appointments.count }}
Appointments
{{ patient.admissions.count }}
Admissions
{{ patient.bills.count }}
Bills
Personal Information
Date of Birth:
{{ patient.date_of_birth|date:"F d, Y" }}
Gender:
{{ patient.get_gender_display }}
Phone:
{% if patient.phone_number %} {{ patient.phone_number }} {% else %} Not provided {% endif %}
Email:
{% if patient.email %} {{ patient.email }} {% else %} Not provided {% endif %}
Address:
{% if patient.address %} {{ patient.address }} {% else %} Not provided {% endif %}
SSN:
{% if patient.ssn %} ***-**-{{ patient.ssn|slice:"-4:" }} {% else %} Not provided {% endif %}
Registered:
{{ patient.registration_date|date:"F d, Y" }}
Emergency Contacts
Add
Loading...
Insurance Information
Add
Loading...
Loading appointments...
{#
#} {#
#} {#
#} {#
#} {# Loading medical history...#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {# Loading lab results...#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {#
#} {# Loading billing information...#} {#
#} {#
#} {#
#} {#
#}
Patient Notes
Loading notes...
{% endblock %}