Sha256: ad6f9a11f6544d14edd91469766838e68d99d28462ad3b122ea3617cb845177c

Contents?: true

Size: 699 Bytes

Versions: 15

Compression:

Stored size: 699 Bytes

Contents

<h1>Listing contents</h1>

<p><%= will_paginate @contents %></p>
<table>
  <tr>
  <% for column in Content.content_columns %>
    <th><%= column.human_name %></th>
  <% end %>
  </tr>
  
<% for content in @contents %>
  <tr>
  <% for column in Content.content_columns %>
    <td><%=h content.send(column.name) %></td>
  <% end %>
    <td><%= link_to 'Show', :action => 'show', :id => content %></td>
    <td><%= link_to 'Edit', :action => 'edit', :id => content %></td>
    <td><%= link_to 'Destroy', { :action => 'destroy', :id => content }, :confirm => 'Are you sure?' %></td>
  </tr>
<% end %>
</table>

<p><%= will_paginate @contents %></p>
<p><%= link_to 'New content', :action => 'new' %></p>

Version data entries

15 entries across 15 versions & 4 rubygems

Version Path
cehoffman-acts_as_ferret-0.4.4 doc/demo/app/views/contents/index.rhtml
jkraemer-acts_as_ferret-0.4.4 doc/demo/app/views/contents/index.rhtml
acts_as_ferret-0.5.4 doc/demo/app/views/contents/index.rhtml
acts_as_ferret-0.5.3 doc/demo/app/views/contents/index.rhtml
watson-acts_as_ferret-0.4.8.2 doc/demo/app/views/contents/index.rhtml
acts_as_ferret-0.5.2 doc/demo/app/views/contents/index.rhtml
acts_as_ferret-0.4.8.2 doc/demo/app/views/contents/index.rhtml
acts_as_ferret-0.4.8.1 doc/demo/app/views/contents/index.rhtml
acts_as_ferret-0.5.1 doc/demo/app/views/contents/index.rhtml
acts_as_ferret-0.5 doc/demo/app/views/contents/index.rhtml
acts_as_ferret-0.4.8.rails3 doc/demo/app/views/contents/index.rhtml
acts_as_ferret-0.4.8 doc/demo/app/views/contents/index.rhtml
acts_as_ferret-0.4.7 doc/demo/app/views/contents/index.rhtml
acts_as_ferret-0.4.6 doc/demo/app/views/contents/index.rhtml
acts_as_ferret-0.4.4 doc/demo/app/views/contents/index.rhtml