diaspora/app/views/comments/_new_comment.html.haml

7 lines
No EOL
237 B
Text

= form_for Comment.new, :remote => true do |f|
= f.error_messages
%p
/= f.label :message
= f.text_field :text, :value => "dislike!"
= f.hidden_field :post_id, :value => post.id
= f.submit 'comment', :class => 'button'