Sha256: 4d74d0d2f46073f86b4271a6e54d43213206a923356f13b9103966f02a930353
Contents?: true
Size: 803 Bytes
Versions: 78
Compression:
Stored size: 803 Bytes
Contents
<%= form_for(@post) do |f| %> <% if @post.errors.any? %> <div id="error_explanation"> <h2><%= pluralize(@post.errors.count, "error") %> prohibited this post from being saved:</h2> <ul> <% @post.errors.full_messages.each do |msg| %> <li><%= msg %></li> <% end %> </ul> </div> <% end %> <%= f.label :title %> <%= f.text_field :title %> <%= f.label :content %> <%= f.cktext_area :content, :ckeditor => { :width => 800, :height => 400 } %> <%= f.label :info %> <% if @post.new_record? %> <%= cktext_area :post, :info, :value => "Defaults info content", :id => "new_info_content" %> <% else %> <%= cktext_area :post, :info, :cols => 50, :rows => 70 %> <% end %> <div class="actions"> <%= f.submit %> </div> <% end %>
Version data entries
78 entries across 78 versions & 6 rubygems