<%= form_for(@selection) do |f| %> <% if @selection.errors.any? %>

<%= pluralize(@selection.errors.count, "error") %> prohibited this selection from being saved:

<% end %>
<%= f.label :name %>
<%= f.text_field :name %>
<%= f.label :parent_id %>
<%= f.number_field :parent_id %>
<%= f.label :system_code %>
<%= f.text_field :system_code %>
<%= f.label :position %>
<%= f.number_field :position %>
<%= f.label :is_default %>
<%= f.check_box :is_default %>
<%= f.label :is_system %>
<%= f.check_box :is_system %>
<%= f.submit %>
<% end %>