Sha256: e0ac7a01b496bf36d6948be45983e01b3ff7ec351c2fe5abd5b4bb33be9b937e

Contents?: true

Size: 489 Bytes

Versions: 4

Compression:

Stored size: 489 Bytes

Contents

<h1>Listing users</h1>

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

<% @users.each do |user| %>
  <tr>
    <td><%= user.name %></td>
    <td><%= user.info %></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
induction_cannon_01-0.0.5 app/views/users/index.html.erb
induction_cannon_01-0.0.3 app/views/users/index.html.erb
induction_cannon_01-0.0.2 app/views/users/index.html.erb
induction_cannon_01-0.0.1 app/views/users/index.html.erb