6 lines
339 B
Text
6 lines
339 B
Text
= form_tag("/comments",:remote => true, :class =>"new_comment", :id => "new_comment") 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", :name => "commit"
|
|
|