Sha256: 980fcf238b481db5b45b9e17750b0b779df72f89504ee9aa484cd31ca009a0a1

Contents?: true

Size: 557 Bytes

Versions: 6

Compression:

Stored size: 557 Bytes

Contents

<h1>Listing places</h1>

<table>
  <tr>
    <th>Address</th>
    <th>City</th>
    <th>State</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @places.each do |place| %>
  <tr>
    <td><%= place.address %></td>
    <td><%= place.city %></td>
    <td><%= place.state %></td>
    <td><%= link_to 'Show', place %></td>
    <td><%= link_to 'Edit', edit_place_path(place) %></td>
    <td><%= link_to 'Destroy', place, :confirm => 'Are you sure?', :method => :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Place', new_place_path %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
jtable-rails-0.2.5 spec/support/rails_app/app/views/places/index.html.erb
jtable-rails-0.2.4 spec/support/rails_app/app/views/places/index.html.erb
jtable-rails-0.2.3 spec/support/rails_app/app/views/places/index.html.erb
jtable-rails-0.2.2 spec/support/rails_app/app/views/places/index.html.erb
jtable-rails-0.2.1 spec/support/rails_app/app/views/places/index.html.erb
jtable-rails-0.2.0 spec/support/rails_app/app/views/places/index.html.erb