6 lines
214 B
Text
6 lines
214 B
Text
= form_for Comment.new, :remote => true do |f|
|
|
= f.error_messages
|
|
%p
|
|
= f.text_field :text, :value => "dislike!"
|
|
= f.hidden_field :post_id, :value => post.id
|
|
= f.submit 'comment', :class => 'button'
|