Sha256: 810f28f5b198693ffdfc3ed9dd22c7123fbc18af1e44cb3b14894ba6b9639e15
Contents?: true
Size: 966 Bytes
Versions: 5
Compression:
Stored size: 966 Bytes
Contents
<div class="panel clearfix"> <h3>New content</h3> <% form_for(@content) do |f| %> <div class="tools"> <%= link_to 'Cancel', contents_path %> <%= f.submit 'Create' %> </div> <div class="main"> <%= f.text_field :title, :placeholder => "Content Title", :class => 'title' %> <%= f.label :body %> <%= f.text_area :body %> </div> <div class="side"> <p> <%= f.label :type %> <%= f.select :tipe, content_tipe_options %> </p> <p> <%= f.label "DOM id" %> <%= f.text_field :dom_id %> </p> <p> <%= f.label :position %> <%= f.text_field :position %> </p> <p> <%= f.label :visible %> <%= f.check_box :visible%> </p> </div> <% end %> </div> <%= render :partial => "preview", :locals => { :form => '.new_content', :content => @content } %>
Version data entries
5 entries across 5 versions & 1 rubygems