github.com/rotblauer/buffalo@v0.7.1-0.20170112214545-7aa55ef80dd3/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      {{#each users as |user|}}
    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      {{/each}}
    25    </tbody>
    26  </table>