{% 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 %}
All residents
All relatives
All physicians
All medical abstracts
All drugs
Archive
Reports
{% endblock %}
{% block content %}
{% 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 %}