{% extends "cm_portal/geriatric_index.html" %}
{% block title %}| OSCA Numbers{% endblock %}
{% block page_title %}| OSCA Numbers{% endblock %}
{% load static %}
{% block sidebar %}
{% if first_floor %}
St. Camillus Bldg. 1st floor
Resident |
OSCA # |
{% for resident in first_floor %}
{{ resident }} |
{{ resident.osca_id }} |
{% endfor %}
{% endif %}
{% if second_floor %}
St. Camillus Bldg. 2nd floor
Resident |
OSCA # |
{% for resident in second_floor %}
{{ resident }} |
{{ resident.osca_id }} |
{% endfor %}
{% endif %}
{% if tezza %}
Blessed Luigi Tezza
Resident |
OSCA # |
{% for resident in tezza %}
{{ resident }} |
{{ resident.osca_id }} |
{% endfor %}
{% endif %}
{% if rebuschini %}
Blessed Enrico Rebuschini
Resident |
OSCA # |
{% for resident in rebuschini %}
{{ resident }} |
{{ resident.osca_id }} |
{% endfor %}
{% endif %}
{% endblock %}