Sha256: 015f4b3bacfa188a8e94e7373d134bf8298899acd6c0d1292bda12f28bb37007

Contents?: true

Size: 456 Bytes

Versions: 2

Compression:

Stored size: 456 Bytes

Contents

<h1>Listing users</h1>

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

<% @users.each do |user| %>
  <tr>
    <td><%=h user.name %></td>
    <td><%=h user.password %></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

2 entries across 2 versions & 1 rubygems

Version Path
cucumba-0.0.6 spec/support/sample_app/app/views/users/index.html.erb
cucumba-0.0.5 spec/support/sample_app/app/views/users/index.html.erb