Sha256: 78dbcf1df4903f27de0fa4c6b49a04008d3d49ac2bbe73c35f1002f8506c2a90

Contents?: true

Size: 437 Bytes

Versions: 4

Compression:

Stored size: 437 Bytes

Contents

<h1>Listing users</h1>

<table>
  <tr>
    <th>Email</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @users.each do |user| %>
  <tr>
    <td><%= user.email %></td>
    <td><%= link_to 'Show', user %></td>
    <td><%= link_to 'Edit', edit_user_path(user) %></td>
    <td><%= link_to 'Destroy', user, confirm: 'Are you sure?', method: :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New User', new_user_path %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
parrot-0.0.5 test/dummy/app/views/users/index.html.erb
parrot-0.0.4 test/dummy/app/views/users/index.html.erb
parrot-0.0.3 test/dummy/app/views/users/index.html.erb
parrot-0.0.2 test/dummy/app/views/users/index.html.erb