2019-12-22 23:17:20 +01:00
|
|
|
h1 Updating Moderation Scratchpad
|
|
|
|
|
|
|
|
= form_for @changeset, Routes.profile_scratchpad_path(@conn, :update, @user), [method: "put"], fn f ->
|
|
|
|
= if @changeset.action do
|
|
|
|
.alert.alert-danger
|
|
|
|
p Oops, something went wrong! Please check the errors below.
|
|
|
|
.block
|
2021-09-13 01:19:00 +02:00
|
|
|
div
|
2021-09-30 23:56:38 +02:00
|
|
|
= render PhilomenaWeb.MarkdownView, "_input.html", conn: @conn, f: f, action_text: "Scratchpad", placeholder: "Scratchpad Contents", name: :scratchpad, required: false
|
2019-12-22 23:17:20 +01:00
|
|
|
|
2023-11-23 17:07:49 +01:00
|
|
|
.block.communication-edit__actions
|
|
|
|
=> submit "Update", class: "button button--important button--success"
|