templates/oxygen_icu/district.html.twig line 1

Open in your IDE?
  1. {% extends 'front.html.twig' %}
  2. {% block title %}Oxygen & ICU in Ahmedabad{% endblock %}
  3. {% block content %}
  4.     <div class="kt-subheader kt-grid__item"></div>
  5.     <div class="kt-container kt-grid__item kt-grid__item--fluid">
  6.         <div class="kt-portlet kt-portlet--mobile">
  7.             <div class="kt-portlet__head kt-portlet__head--lg">
  8.                 <div class="kt-portlet__head-label">
  9.                     <h3 class="kt-portlet__head-title">Oxygen &amp; ICU in Ahmedabad</h3>
  10.                 </div>
  11.             </div>
  12.             <div class="kt-portlet__body">
  13.                 <table class="table">
  14.                     <thead>
  15.                         <tr>
  16.                             <th class="text-right text-nowrap">Sr. No.</th>
  17.                             <th class="text-nowrap">Health Facility</th>
  18.                             <th>ICU Type</th>
  19.                             <th class="text-right">Sanctioned Beds</th>
  20.                             <th class="text-right">Functional Beds</th>
  21.                             <th class="text-right">Vacant Beds</th>
  22.                         </tr>
  23.                     </thead>
  24.                     <tbody>
  25.                         {% for bed in beds %}
  26.                             <tr>
  27.                                 <td class="text-right">{{ loop.index }}</td>
  28.                                 <td>
  29.                                     <a href="{{ path('oxygen_icu_hospital') }}" data-toggle="kt-tooltip" title="View Details">{{ bed.facility }}</a>
  30.                                 </td>
  31.                                 <td class="text-nowrap">{{ bed.department }}</td>
  32.                                 <td class="text-right">{{ bed.sanc }}</td>
  33.                                 <td class="text-right">{{ bed.func }}</td>
  34.                                 <td class="text-right">{{ bed.func - bed.occ }}</td>
  35.                             </tr>
  36.                         {% endfor %}
  37.                     </tbody>
  38.                 </table>
  39.             </div>
  40.         </div>
  41.     </div>
  42. {% endblock %}