<%= simple_form_for(@bulk_update_request) do |f| %> <%= error_messages_for("bulk_update_request") %> <% if @bulk_update_request.new_record? %> <%= f.input :title, :as => :string %> <% end %>
<%= text_area :bulk_update_request, :script, :size => "50x10" %>

Help

<% if @bulk_update_request.new_record? %>
<%= dtext_field "bulk_update_request", "reason", :name => "Reason" %>
<% end %> <% if @bulk_update_request.errors.any? %>

You can ignore the wiki page and minimum count requirements

<% end %> <% if @bulk_update_request.new_record? %> <%= f.input :forum_topic_id, :hint => " (optional)" %> <% elsif @bulk_update_request.persisted? && CurrentUser.is_admin? %> <%= f.input :forum_topic_id %> <%= f.input :forum_post_id %> <% end %> <%= f.button :submit, :value => "Submit" %> <%= dtext_preview_button "bulk_update_request", "reason" %> <% end %> <%= content_for(:html_header) do %> <% end %>