2013-06-29 23:10:44 +02:00

18 lines
299 B
Plaintext

= form_for([:admin, @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'