<%- include('header.ejs') %>

<div class="main">
  <div class="container statistical-container">
    <h1>Thống kê theo thiết bị</h1>

    <div class="table-responsive">
      <table class="table-region">
        <thead>
          <tr>
            <th>ID</th>
            <th>Tên Thiết bị chụp ảnh</th>
            <th>Tổng số records</th>
            <th>3 giờ gần nhất</th>
            <th>Trong ngày hôm nay</th>
          </tr>
        </thead>

        <tbody>
          <% if (listDeviceStatistic.length === 0) { %>
            <tr>
              <td colspan="5">Chưa có dữ liệu thống kê.</td>
            </tr>
          <% } %>

          <% listDeviceStatistic.forEach(function(item){ %>
            <tr>
              <td><%= item.id %></td>
              <td><%= item.photoRecordDeviceName %></td>
              <td><%= item.totalRecords %></td>
              <td><%= item.last3HoursRecords %></td>
              <td><%= item.todayRecords %></td>
            </tr>
          <% }) %>
        </tbody>
      </table>
    </div>
  </div>
</div>

<%- include('footer.ejs') %>
