Sha256: 4f10bf0f39645ad0b4a7a126003d16ed12911661d61205beff779f6282d920ba

Contents?: true

Size: 396 Bytes

Versions: 1

Compression:

Stored size: 396 Bytes

Contents

<h1>Listing sports</h1>

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

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

<br />

<%= link_to 'New Sport', new_sport_path %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
routespec-0.0.1 test/rails311/app/views/sports/index.html.erb