Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.52 KB | None | 0 0
  1. <!--
  2. including header content which is common for all pages
  3. -->
  4. <%- include ../../layouts/header.ejs %>
  5.  
  6. <% if (messages.error) { %>
  7.     <p style="color:red"><%- messages.error %></p>
  8. <% } %>
  9.  
  10. <% if (messages.success) { %>
  11.     <p style="color:green"><%- messages.success %></p>
  12. <% } %>
  13.  
  14. <table width='80%' border=0>
  15.  
  16.     <tr style='text-align:left; background-color:#CCC'>
  17.         <th>Name</th>
  18.         <th>Age</th>
  19.         <th>Email</th>
  20.         <th>Action</th>
  21.     </tr>
  22.  
  23.     <!--
  24.        Using FOREACH LOOP for the users array
  25.  
  26.        myArray.forEach(function(el, index) {
  27.            // el - current element, i - index
  28.        });
  29.    -->
  30.     <% if (data) { %>
  31.     <% data.forEach(function(user){ %>
  32.         <tr>
  33.             <td><%= user.name %></td>
  34.             <td><%= user.age %></td>
  35.             <td><%= user.email %></td>
  36.             <td>
  37.                 <div style="float:left">
  38.                     <a href='/users/edit/<%= user.id %>'>Edit</a> &nbsp;
  39.                     <form method="post" action="/users/delete/<%= user.id %>" style="float:right">
  40.                         <input type="submit" name="delete" value='Delete' onClick="return confirm('Are you sure you want to delete?')" />
  41.                         <input type="hidden" name="_method" value="DELETE" />
  42.                     </form>
  43.                 </div>
  44.             </td>
  45.         </tr>
  46.     <% }) %>
  47.     <% } %>
  48.  
  49. </table>
  50.  
  51. <!--
  52. including footer content which is common for all pages
  53. -->
  54. <%- include ../../layouts/footer.ejs %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement