Sha256: 327dbbb049d955efcd2e056280018f26eea6ed9e737daf577bb63b05091c4848
Contents?: true
Size: 797 Bytes
Versions: 21
Compression:
Stored size: 797 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, :width => 800, :height => 400 %> <%= f.label :info %> <% if @post.new_record? %> <%= cktext_area :post, :info, :input_html => { :value => "Defaults info content" } %> <% else %> <%= cktext_area :post, :info, :input_html => { :cols => 50, :rows => 70 } %> <% end %> <div class="actions"> <%= f.submit %> </div> <% end %>
Version data entries
21 entries across 21 versions & 3 rubygems