{% extends "cm_portal/residents.html" %} {% block title %}| OSCA Numbers{% endblock %} {% block page_title %}| OSCA Numbers{% endblock %} {% load static %} {% block sidebar %}

{% if user.is_authenticated %} {% include 'cm_portal/user.html' %} {% endif %}

{% endblock %} {% block content %}

{% if first_floor %}

St. Camillus Bldg. 1st floor

{% for resident in first_floor %} {% endfor %}
Resident OSCA #
{{ resident }} {{ resident.osca_id }}
{% endif %} {% if second_floor %}

St. Camillus Bldg. 2nd floor

{% for resident in second_floor %} {% endfor %}
Resident OSCA #
{{ resident }} {{ resident.osca_id }}
{% endif %} {% if tezza %}

Blessed Luigi Tezza

{% for resident in tezza %} {% endfor %}
Resident OSCA #
{{ resident }} {{ resident.osca_id }}
{% endif %} {% if rebuschini %}

Blessed Enrico Rebuschini

{% for resident in rebuschini %} {% endfor %}
Resident OSCA #
{{ resident }} {{ resident.osca_id }}
{% endif %} {% endblock %}