<h1>Listing cat27s</h1>

<table>
  <tr>
    <th>Title</th>
    <th>Descr</th>
    <th>More</th>
  </tr>

<% @cat27s.each do |cat27| %>
  <tr>
    <td><%=h cat27.title %></td>
    <td><%=h cat27.descr %></td>
    <td><%=h cat27.more %></td>
    <td><%= link_to 'Show', cat27 %></td>
    <td><%= link_to 'Edit', edit_cat27_path(cat27) %></td>
    <td><%= link_to 'Destroy', cat27, :confirm => 'Are you sure?', :method => :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New cat27', new_cat27_path %>