9 lines
273 B
Plaintext
9 lines
273 B
Plaintext
= simple_form_for(@micropost) do |f|
|
|
= f.error_notification
|
|
.form-inputs
|
|
= f.text_area :content, placeholder: "I got something to say..."
|
|
= f.hidden_field :micropostable_type
|
|
= f.hidden_field :micropostable_id
|
|
.form-actions
|
|
= f.button :submit, "Post"
|