18 lines
299 B
Plaintext
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'
|
|
|
|
|
|
|
|
|