<%= stylesheet_link_tag 'select2' %>
<% if @all_page.errors.any? %> <%= raw errors_to_html(@all_page.errors) %> <% end %>
<%= text_field :all_page, :name, class: "form-control", placeholder: 'Nazwa' %>
<%= text_field :all_page, :title, class: "form-control", placeholder: 'Tytuł' %>
<%= select(:all_page, :type_of, options_for_select(AllPage::FORM_PAGE_TYPES, @all_page.type_of.to_s), {:selected => @all_page.type_of.to_s}, {class: 'form-control select2'}) %>
<%= select(:all_page, :article_id, @articles.collect {|p| [ p.name, p.id ] }, {:include_blank => true, :selected => @all_page.article_id.to_s}, {class: 'form-control select2'}) %>
<%= text_area :all_page, :full_text, :class => "summernote" %>
<% content_for :footer_scripts do %> <%= javascript_include_tag 'select2' %> <% end %>