php_app/app/views/public/comments/_form.html.haml
Nicolas Bally 5cf3a3e83d initial
2014-11-25 22:56:20 +01:00

32 lines
574 B
Plaintext

%h3
Ajouter un mot doux
=form_for [:public,(@comment || Comment.new(:commentable_id => @article.id, :commentable_type => "Article"))], :remote => true do |f|
=f.hidden_field :commentable_id
=f.hidden_field :commentable_type
%p
=f.label :pseudo, "Pseudo :"
=f.text_field :pseudo
%p
=f.label :email, "Email :"
=f.text_field :email
%p
=f.label :website, "Site :"
=f.text_field :website
%p
=f.label :comment, "Commentaire :"
=f.text_area :comment, :style => "width:98%;height:200px;"
=f.submit "Envoyer", :class => "submit btn"