{% extends 'front.html.twig' %}
{% block title %}Oxygen & ICU in Ahmedabad{% endblock %}
{% block content %}
<div class="kt-subheader kt-grid__item"></div>
<div class="kt-container kt-grid__item kt-grid__item--fluid">
<div class="kt-portlet kt-portlet--mobile">
<div class="kt-portlet__head kt-portlet__head--lg">
<div class="kt-portlet__head-label">
<h3 class="kt-portlet__head-title">Oxygen & ICU in Ahmedabad</h3>
</div>
</div>
<div class="kt-portlet__body">
<table class="table">
<thead>
<tr>
<th class="text-right text-nowrap">Sr. No.</th>
<th class="text-nowrap">Health Facility</th>
<th>ICU Type</th>
<th class="text-right">Sanctioned Beds</th>
<th class="text-right">Functional Beds</th>
<th class="text-right">Vacant Beds</th>
</tr>
</thead>
<tbody>
{% for bed in beds %}
<tr>
<td class="text-right">{{ loop.index }}</td>
<td>
<a href="{{ path('oxygen_icu_hospital') }}" data-toggle="kt-tooltip" title="View Details">{{ bed.facility }}</a>
</td>
<td class="text-nowrap">{{ bed.department }}</td>
<td class="text-right">{{ bed.sanc }}</td>
<td class="text-right">{{ bed.func }}</td>
<td class="text-right">{{ bed.func - bed.occ }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
{% endblock %}