diaspora/app/views/comments/_new_comment.html.haml
2010-06-28 14:47:23 -07:00

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"