Sha256: ca61c1eba6dc71d55d47780e2328e5cf81d57ff06b07e371d8c54fb60798f5fa
Contents?: true
Size: 611 Bytes
Versions: 50
Compression:
Stored size: 611 Bytes
Contents
<h1>Listing posts</h1> <table> <tr> <th></th> <th></th> <th></th> </tr> <% @posts.each do |post| %> <tr> <td><%= link_to 'Show', post %></td> <td><%= link_to 'Edit', edit_post_path(post) %></td> <td><%= link_to 'Destroy', post, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Post', new_post_path %> <h2>Text area test</h2> <%= cktext_area_tag("test_area", "Ckeditor") %> <h2>Text area test with options</h2> <%= cktext_area_tag("content", "Ckeditor", :cols => 10, :rows => 20, :ckeditor => {:toolbar => 'Easy'}) %>
Version data entries
50 entries across 50 versions & 6 rubygems