philomena/lib/philomena_web/templates/image/scratchpad/edit.html.heex
2024-06-01 23:50:36 -04:00

10 lines
405 B
Text

<h1>
Editing moderation notes for image
<%= link("##{@image.id}", to: ~p"/images/#{@image}") %>
</h1>
<%= form_for @changeset, ~p"/images/#{@image}/scratchpad", fn f -> %>
<div class="field">
<%= textarea(f, :scratchpad, placeholder: "Scratchpad contents", class: "input input--wide") %>
</div>
<%= submit("Update", class: "button", data: [disable_with: raw("Saving&hellip;")]) %>
<% end %>