Sha256: ec7ee3b8be05cc945bcbbf539c79b6e6599655de2ec64958ef0014e6ca979558

Contents?: true

Size: 441 Bytes

Versions: 36

Compression:

Stored size: 441 Bytes

Contents

<h1>Listing users</h1>

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

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

36 entries across 36 versions & 5 rubygems

Version Path
rails3_assist-0.3.6 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.3.5 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.3.4 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.3.3 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.3.2 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.3.1 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.3.0 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.2.13 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.2.12 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.2.11 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.2.10 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.2.9 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.2.8 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.2.7 spec/fixtures/app/views/users/index.html.erb
rails3_assist-0.2.5 spec/fixtures/app/views/users/index.html.erb
hermes-0.1.0 test/dummy/app/views/users/index.html.erb