Sha256: 8df618407ca0b86a755bb19394c9db11d5c3f8a06929e1852e1776b768aa9558
Contents?: true
Size: 571 Bytes
Versions: 8
Compression:
Stored size: 571 Bytes
Contents
<h2>New Site</h2> <%= form_for [:admin, Site.new] do |form| %> <h2>Home Section</h2> <% form.field_set :'home_section' do %> <%= fields_for :section, Section.new(params[:section]) do |s| %> <% column do %> <%= s.label :title %> <%= s.text_field :title %> <% end %> <% column do %> <%= s.collection_select :type, Section.types, :to_s, :to_s, {}, :label => true, :tabindex => :section_title %> <% end %> <% end %> <% end %> <%= render "form", form: form %> <% save_or_cancel_links(form) %> <% end %>
Version data entries
8 entries across 8 versions & 1 rubygems