<!DOCTYPE html>
<html lang="es">
<head>
  {{> head }}
  <title>{{ title }}</title>
</head>

<body>

  <div class="d-flex" id="wrapper">
    <div id="sidebar-wrapper">
      <div class="sidebar-heading">{{ title }} </div>
      {{> navbar }}
    </div>

    <div id="page-content-wrapper">
      <nav class="navbar navbar-expand-lg navbar-light border-bottom">
        {{> topbar }}
      </nav>
      <div class="container-fluid">
        <div class="row">
          <div class="card col-md-12">
             <div class="pd-15">
                <h1 class="title">Control Diario</h1>
                <div class="my-4">
                  <a class="btn btn-green" href="/modulos">
                    Volver
                  </a>
                </div>
                <div class="table-responsive">
                  <table class="table table-bordered table-hover table-style table-sm TableExportar">
                    <thead>
                      <tr>
                        <th>Id</th>
                        <th>Fecha</th>
                        <th>Vehículo</th>
                        <th>Kilometraje</th>
                        <th>Usuario</th>
                        <th>Informe Problemas</th>
                        <th>Acciones</th>
                      </tr>
                    </thead>
                    <tbody>
                      {{# each obj}}
                      <tr>
                        <th>{{id}}</th>
                        <td>{{formatDate fecha_registro}}</td>
                        <td style="text-transform: uppercase;"><a href="/vehiculos/{{id_vehiculo}}" target="_blank">{{placa}} - {{Transporte.transporte}}</a></td>
                        <td>{{kilometraje}}</td>
                        <td>{{Usuario.nombre}} - {{Usuario.usuario}}</td>
                        <td>
                          {{{ existenErrores malos informe_excel }}}
                        </td>
                        <td><a href="/modulos/control-diario/{{id}}">Visualizar</a></td>
                      </tr>
                      {{/each}}
                    </tbody>
                  </table>
              </div>
             </div>
          </div>
        </div>
      </div>
    </div>
  </div>

  <!-- javascrips imports -->
  {{> scripts }}
</body>

</html>
