Sha256: 8de9eb59703283b91fa0666c60b3f4f23f2af999e0c6ddedc5dac833678f530e

Contents?: true

Size: 412 Bytes

Versions: 1

Compression:

Stored size: 412 Bytes

Contents

<h1>Listing states</h1>

<table>
  <tr>
  </tr>

<% for state in @states %>
  <tr>
    <td><%= state.name %></td>
    <td><%= link_to 'Show', state_path(state) %></td>
    <td><%= link_to 'Edit', edit_state_path(state) %></td>
    <td><%= link_to 'Destroy', state_path(state), :confirm => 'Are you sure?', :method => :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New state', new_state_path %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ultrasphinx-1.11 test/integration/app/app/views/states/index.html.erb