5 lines
361 B
Text
5 lines
361 B
Text
= form_tag("/comments", :remote => true, :class =>"new_comment", :id => "new_comment-#{post.id}") do
|
|
%p
|
|
= text_field_tag "comment_text", 'dislike!', :size => 30, :name => 'comment[text]'
|
|
= hidden_field_tag "comment_post_id", "#{post.id}", :name => "comment[post_id]"
|
|
= submit_tag 'comment', :id => "comment_submit_#{post.id}", :name => "commit"
|