Files
cmtool/app/views/cmtool/quotes/_form.html.slim
T
2015-02-25 10:05:38 +01:00

23 lines
558 B
Plaintext

= form_for [cmtool, @quote], html: {multipart: true} do |f|
= render 'error_messages', target: @quote
.field
= f.label :owner
= f.text_field :owner
.field
= f.label :function
= f.text_field :function
.field
= f.label :state
= f.select :state, Cmtool::Quote.states
.field
= f.label :image
= f.file_field :image
.field
= f.label :body
= f.text_area :body, rows: 8, class: 'editor_basic'
.field
= f.label :active
= f.check_box :active
.actions
= f.submit @submit || update_button_text(@quote)