<%= action_name.humanize %> Forum
To create a category, leave the category field unselected.
<%= form_for @forum do |f| %> <% if @forum.errors.any? %> <% flash.now[:error] = @forum.errors.full_messages.join(', and ') %> <% end %> <%= f.label :category_id %> <%= f.collection_select :category_id, Category.all, :id, :title %> <%= f.label :title %> <%= f.text_field :title, :style => "width:98%" %> <%= f.label :description %>
<%= f.text_area :description, :style => "width:98%", :rows => 5 %> <%= f.label :position %> <%= f.text_field :position %>
<%= f.label :state %> <%= f.check_box :state %>
<% end %>