12345678910111213141516171819202122232425 |
- <h1>Listing users</h1>
- <table>
- <tr>
- <th>E-Mail</th>
- <th>Name</th>
- <th></th>
- <th></th>
- <th></th>
- </tr>
- <% @users.each do |user| %>
- <tr>
- <td><%= user.email %></td>
- <td><%= user.name %></td>
- <td><%= link_to 'Show', user %></td>
- <td><%= link_to 'Edit', edit_user_path(user) %></td>
- <td><%= link_to 'Destroy', user, method: :delete, data: { confirm: 'Are you sure?' } %></td>
- </tr>
- <% end %>
- </table>
- <br />
- <%= link_to 'New User', new_user_path %>
|