Advertisement
ADL_Rodrigo_Silva

Untitled

Jul 8th, 2022
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.06 KB | None | 0 0
  1. <%- include("template/cabecera", {tituloWeb: 'Página de Inicio Cliente'})  %>
  2.  
  3.     <div class="container">
  4.  
  5.         <table class="table">
  6.  
  7.             <thead>
  8.                 <th scope="col">ID</th>
  9.                 <th scope="col">NOMBRE</th>
  10.                 <th scope="col">APELLIDO</th>
  11.                 <th scope="col">ACCIÓN</th>
  12.             </thead>
  13.             <tbody>
  14.                 <h2>Clientes</h2>
  15.  
  16.                 <div>
  17.                     <% if (arrayClientes.length>0) { %>
  18.                         <% arrayClientes.forEach( cliente => { %>
  19.                             <tr>
  20.                                 <th>Id: <%= cliente.id %></th><br>
  21.                                 <th>Nombre: <%= cliente.nombre %></th><br>
  22.                                 <th>Apellido: <%= cliente.apellido %></th><br>
  23.                             </tr>
  24.                             <br>
  25.                         <% }) %>
  26.                     <% } %>
  27.                 </div>
  28.  
  29.             </tbody>
  30.  
  31.         </table>
  32.  
  33.     </div>
  34.  
  35. <%- include("template/footer") %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement