{% if resident.vital_status == 'DE' and resident.died_on %}
Died on: {{ resident.died_on }} |
{% elif resident.vital_status == 'DC' and resident.discharged_on %}
Discharged on: {{ resident.discharged_on }} |
{% endif %}
Reminder(s): {{ resident.reminders }} |
Diagnosis: {{ resident.admitting_diagnosis }} |
Diet: {{ resident.diet }} |
Weight: {{ resident.weight }} |
Height: {{ resident.height }} |
Surname: {{ resident.last_name }} |
First Name: {{ resident.first_name }} |
Middle Name: {{ resident.middle_name }} |
Age:
{% if not resident.vital_status == 'LI' %}
{{ resident.died_on|timeuntil:resident.birth_date }}
{% else %}
{{ resident.birth_date|timesince }}
{% endif %} |
Sex: {{ resident.get_gender_display }} |
OSCA ID #: {{ resident.osca_id }} |
Address: {{ resident.address }} |
Birth Date: {{ resident.birth_date }} |
Birth Place: {{ resident.birth_place }} |
Nationality: {{ resident.nationality }} |
Civil Status: {{ resident.get_civil_status_display }} |
Most Recent Occupation: {{ resident.most_recent_occupation }} |
Date of Admission: {{ resident.admission_date }} |
Time of Admission: {{ resident.admission_time }} |
Religion: {{ resident.religion }} |