github.com/jasonish/buffalo@v0.8.2-0.20170413145823-bacbdd415f1b/examples/html-resource/templates/users/index.html (about)

     1  <h1>Users</h1>
     2  
     3  <a href="/users/new">Create New User</a>
     4  
     5  <table>
     6    <thead>
     7      <th>First Name</th>
     8      <th>Last Name</th>
     9      <th>Email</th>
    10      <th></th>
    11    </thead>
    12    <tbody>
    13      <%= for (user) in users { %>
    14      <tr>
    15        <td><%= user.FirstName %></td>
    16        <td><%= user.LastName %></td>
    17        <td><%= user.Email %></td>
    18        <td>
    19          <a href="/users/<%= user.ID %>">View</a>
    20          <a href="/users/<%= user.ID %>/edit">Edit</a>
    21          <a href="/users/<%= user.ID %>" data-method="DELETE" data-confirm="Are you sure?">Destroy</a>
    22        </td>
    23      </tr>
    24      <% } %>
    25    </tbody>
    26  </table>