{% extends "cm_portal/geriatric_index.html" %} {% block title %}| Inventory of Medicines{% endblock %} {% block page_title %}| Inventory of Medicines{% endblock %} {% load static %} {% block sidebar %}

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

{% endblock %} {% block content %}
{% if male_first_floor %}

St. Camillus Building - First floor (Male)

{% include "cm_portal/maintenance_th.html" %} {% for resident in male_first_floor %} {% include "cm_portal/maintenance_data.html" %} {% endfor %}
{% endif %} {% if female_first_floor %}

St. Camillus Building - First floor (Female)

{% include "cm_portal/maintenance_th.html" %} {% for resident in female_first_floor %} {% include "cm_portal/maintenance_data.html" %} {% endfor %}
{% endif %} {% if male_second_floor %}

St. Camillus Building - Second floor (Male)

{% include "cm_portal/maintenance_th.html" %} {% for resident in male_second_floor %} {% include "cm_portal/maintenance_data.html" %} {% endfor %}
{% endif %} {% if female_second_floor %}

St. Camillus Building - Second floor (Female)

{% include "cm_portal/maintenance_th.html" %} {% for resident in female_second_floor %} {% include "cm_portal/maintenance_data.html" %} {% endfor %}
{% endif %} {% if female_bldg_three %}

Building Three (Female)

{% include "cm_portal/maintenance_th.html" %} {% for resident in female_bldg_three %} {% include "cm_portal/maintenance_data.html" %} {% endfor %}
{% endif %} {% if male_luigi_tezza %}

Blessed Luigi Tezza (Male)

{% include "cm_portal/maintenance_th.html" %} {% for resident in male_luigi_tezza %} {% include "cm_portal/maintenance_data.html" %} {% endfor %}
{% endif %} {% if female_luigi_tezza %}

Blessed Luigi Tezza (Female)

{% include "cm_portal/maintenance_th.html" %} {% for resident in female_luigi_tezza %} {% include "cm_portal/maintenance_data.html" %} {% endfor %}
{% endif %} {% if male_rebuschini %}

Blessed Enrico Rebuschini (Male)

{% include "cm_portal/maintenance_th.html" %} {% for resident in male_rebuschini %} {% include "cm_portal/maintenance_data.html" %} {% endfor %}
{% endif %} {% if female_rebuschini %}

Blessed Enrico Rebuschini (Female)

{% include "cm_portal/maintenance_th.html" %} {% for resident in female_rebuschini %} {% include "cm_portal/maintenance_data.html" %} {% endfor %}
{% endif %}
{% endblock %}