Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%- include("template/cabecera", {tituloWeb: 'Página de Inicio Cliente'}) %>
- <div class="container">
- <table class="table">
- <thead>
- <th scope="col">ID</th>
- <th scope="col">NOMBRE</th>
- <th scope="col">APELLIDO</th>
- <th scope="col">ACCIÓN</th>
- </thead>
- <tbody>
- <h2>Clientes</h2>
- <div>
- <% if (arrayClientes.length>0) { %>
- <% arrayClientes.forEach( cliente => { %>
- <tr>
- <th>Id: <%= cliente.id %></th><br>
- <th>Nombre: <%= cliente.nombre %></th><br>
- <th>Apellido: <%= cliente.apellido %></th><br>
- </tr>
- <br>
- <% }) %>
- <% } %>
- </div>
- </tbody>
- </table>
- </div>
- <%- include("template/footer") %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement