15 lines
383 B
Plaintext
15 lines
383 B
Plaintext
= semantic_form_for [:admin, @page] do |f|
|
|
=f.inputs :name => "Basic" do
|
|
= f.input :title, :label => "Titre"
|
|
= f.input :slug, :label => "Slug"
|
|
= f.input :description, :label => "Description"
|
|
= f.input :keywords, :label => "Mot clefs"
|
|
|
|
.page_form
|
|
=f.text_area :markdown_content, :class => "markdown"
|
|
%p{:style => "height:400px;"}
|
|
|
|
|
|
=f.submit "Sauvegarder"
|
|
|
|
|