{% extends "cm_portal/geriatric_index.html" %} {% block title %}| List of Residents with Medical Abstracts{% endblock %} {% block page_title %}| List of Residents with Medical Abstracts{% endblock %} {% load static %} {% block sidebar %}

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

{% endblock %} {% block content %} {% if medicalabstract_list %}
{% for medicalabstract in medicalabstract_list %} {% include "cm_portal/resident_list_item.html" with resident=medicalabstract.resident building=True %} {% endfor %}
{% else %}

There are no medical abstracts in the portal.

{% endif %}
{% if is_paginated %} {% include 'cm_portal/pagination.html' %} {% endif %} {% if perms.cm_portal.add_medicalabstract %} Add a medical abstract {% else %} Add a medical abstract {% endif %} {% endblock %}