<!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">Lista de Transportes</h1>
                <div class="my-4">
                  <a class="btn btn-green" href="/vehiculos">
                    Volver
                  </a>
                  <a class="btn btn-blue" href="/vehiculos_transportes/nuevo">
                    Agregar Nuevo
                  </a>
                </div>
                <div class="table-responsive">
                  <table class="table table-bordered table-hover table-style table-sm TableExportar">
                    <thead>
                      <tr>
                        <th>Id</th>
                        <th>Transporte</th>
                        <th>Estado</th>
                        <th>Acciones</th>
                      </tr>
                    </thead>
                    <tbody>
                      {{# each obj}}
                      <tr>
                        <th>{{id}}</th>
                        <td>{{transporte}}</td>
                        <td>
                          {{#if isActive}}
                            Activo
                          {{else}}
                            Inactivo
                          {{/if}}
                        </td>
                        <td><a href="/vehiculos_transportes/{{id}}">Editar</a></td>
                      </tr>
                      {{/each}}
                    </tbody>
                  </table>
              </div>
             </div>
          </div>
        </div>
      </div>
    </div>
  </div>

  <!-- javascrips imports -->
  {{> scripts }}
</body>

</html>
