Sha256: c02326378cf7a3429a21982a22fb6cec82bff1ad7251b2e54a0b8530648520fd

Contents?: true

Size: 459 Bytes

Versions: 10

Compression:

Stored size: 459 Bytes

Contents

<h1>Listing people</h1>

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

<% @people.each do |person| %>
  <tr>
    <td><%= person.name %></td>
    <td><%= link_to 'Show', person %></td>
    <td><%= link_to 'Edit', edit_person_path(person) %></td>
    <td><%= link_to 'Destroy', person, :confirm => 'Are you sure?', :method => :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Person', new_person_path %>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
fixture_background-0.9.10.1 test/rails3/app/views/people/index.html.erb
fixture_background-0.9.10 test/rails3/app/views/people/index.html.erb
fixture_background-0.9.9 test/rails3/app/views/people/index.html.erb
fixture_background-0.9.8 test/rails3/app/views/people/index.html.erb
fixture_background-0.9.7 test/rails3/app/views/people/index.html.erb
fixture_background-0.9.6 test/rails3/app/views/people/index.html.erb
fixture_background-0.9.5 test/rails3/app/views/people/index.html.erb
fixture_background-0.9.4 test/rails3/app/views/people/index.html.erb
fixture_background-0.9.3 test/rails3/app/views/people/index.html.erb
fixture_background-0.9.2 test/rails3/app/views/people/index.html.erb