Review <%= @resource.name %> <% remote_form_for :rating_comment, :url => {:controller => 'rating_comment', :action => (@rating_comment ? 'edit' : 'create') } do |form| %>

Enter a title for your review (optional):

<%= form.text_field :title %>

Type your review in the space below:

<%= form.text_area :comment, :rows => 8 %>

<% if @rating_comment %> <%= hidden_field_tag :rating_comment_id, @rating_comment.id %> <% end %> <%= hidden_field_tag :rateable_id, @resource.id %> <%= submit_tag 'Submit comment' %> <%= link_to_function 'Cancel', "new Effect.SlideUp('comment-form')" %> <% end %>