pic_vert_app/app/views/newsgroups/_form.html.haml
2013-01-08 22:47:42 +01:00

18 lines
289 B
Plaintext

= form_for(@newsgroup) do |f|
%table
%tr
%td= f.label :name, "Nom du groupe :"
%td= f.text_field :name, :class => "inputText"
%p
= f.label :description, "Description du groupe :"
%br
= f.text_area :description, :class => "Textarea"
= f.submit 'Sauvegarder'