Sha256: b2b9d89eb83a72b6c9d0d1e53e01253a78b91cd6fab3e724ae81c04629ccb86b
Contents?: true
Size: 613 Bytes
Versions: 41
Compression:
Stored size: 613 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", :input_html => {:cols => 10, :rows => 20}, :toolbar => 'Easy') %>
Version data entries
41 entries across 41 versions & 3 rubygems