Sha256: ce5dfca52895ed6fdc98a844e3ccc473287c8b0849a6bc16d1713eee2db59c1f

Contents?: true

Size: 399 Bytes

Versions: 4

Compression:

Stored size: 399 Bytes

Contents

<h1>Listing users</h1>

<table>
  <tr>
    <th>Name</th>
  </tr>

<% @users.each do |user| %>
  <tr>
    <td><%=h user.name %></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
fizx-collapsed_routes-1.0.2 spec/app/app/views/users/index.html.erb
fizx-collapsed_routes-1.1.0 spec/app/app/views/users/index.html.erb
fizx-collapsed_routes-1.2.0 spec/app/app/views/users/index.html.erb
fizx-collapsed_routes-1.3.0 spec/app/app/views/users/index.html.erb