New Pipeline
<% re_form_for(@re_pipeline, :url => re_pipelines_path, :method => :post, :span => "3x13", :html => {:id => "re_pipeline_new_form"}) do |f| %>
<%= f.error_messages :message => "Unable To Create Pipeline" %>
<% re_whitebox do %>
<%= f.text_field(:code, :required => true, :hint => "must be unique") %>
<%= f.text_field(:title, :required => true) %>
<%= f.text_area(:description) %>
<%= re_button_submit_green('Insert', :id => "re_pipeline_new_insert") %>
<%= re_button_link_orange('Cancel', re_pipelines_path, :id => "re_pipeline_new_cancel") %>
<% end %>
<% end %>