philomena/lib/philomena_web/templates/topic/post/edit.html.slime

17 lines
771 B
Text
Raw Normal View History

2019-12-06 16:14:25 +01:00
= form_for @changeset, Routes.forum_topic_post_path(@conn, :update, @post.topic.forum, @post.topic, @post), fn f ->
= if @changeset.action do
.alert.alert-danger
p Oops, something went wrong! Please check the errors below.
.block
.communication-edit__wrap
2019-12-06 16:14:25 +01:00
.field
= render PhilomenaWeb.MarkdownView, "_input.html", conn: @conn, f: f, placeholder: "Please read the site rules before posting and use ||spoilers|| for NSFW stuff in SFW forums."
2019-12-06 16:14:25 +01:00
.block__content.field
2019-12-06 16:14:25 +01:00
= text_input f, :edit_reason, class: "input input--wide", placeholder: "Reason for edit"
= error_tag f, :edit_reason
.block__content.communication-edit__actions
2019-12-15 19:04:41 +01:00
=> submit "Edit", class: "button", data: [disable_with: raw("Posting…")]