Advertisement
banyucenter

Untitled

Nov 26th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <title><%= title %></title>
  5.     <link rel='stylesheet' href='/stylesheets/style.css' />
  6.     <link rel='stylesheet' href='/bootstrap/css/bootstrap.min.css' />
  7.     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
  8.   </head>
  9.   <body>
  10.     <h1><%= title %></h1>
  11.     <p>Welcome to <%= title %></p>
  12.     <p> Data Warga</p>
  13.     <table class="table">
  14.   <thead>
  15.     <tr>
  16.       <th scope="col">#</th>
  17.       <th scope="col">Nama</th>
  18.       <th scope="col">Umur</th>
  19.       <th scope="col">Pekerjaan</th>
  20.       <th scope="col">Action</th>
  21.     </tr>
  22.   </thead>
  23.   <tbody>
  24.   <% var no=1 %>
  25.   <% for(var i = 0; i < warga.length; i++) {%>
  26.     <tr>
  27.       <th scope="row"><%= no++ %></th>
  28.       <td><%= warga[i].nama %></td>
  29.       <td><%= warga[i].umur %></td>
  30.       <td><%= warga[i].pekerjaan %></td>
  31.      <!-- menambahkan aksi edit dan delete dengan ambil _id -->
  32.       <td><a href='/warga/edit/<%= warga[i]._id %>'> <i class="far fa-edit"></i> </a>
  33.       <a href='/warga/delete/<%= warga[i]._id %>' onclick="return confirm('Are you sure you want to delete this item?');">
  34.       <i class="fas fa-trash"></i></a></td>
  35.     </tr>
  36.   <% } %>
  37.   </tbody>
  38. </table>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement