2013-06-28 20:35:32 +02:00

28 lines
699 B
Plaintext
Executable File

=form_for [:admin, @petition] do |f|
=f.submit "sauvegarder", :class => "btn"
%p
Nom :
=f.text_field :name
%p
Permalink :
=f.text_field :slug
%p
=f.text_area :description, :class => "redactor_content", :style => "height:600px;width:100%;max-width:100%"
:javascript
$('.redactor_content').redactor({
fixed: true,
lang: 'fr',
buttons : ['html', '|', 'formatting', '|', 'bold', 'italic', 'deleted','underline','|', 'alignleft', 'aligncenter', 'alignright', 'justify', '|', 'unorderedlist', 'orderedlist', 'outdent', 'indent', '|', 'table', 'link', '|','fontcolor', 'backcolor','|', 'horizontalrule'],
});
=f.submit "sauvegarder", :class => "btn"