philomena/lib/philomena_web/templates/image/scratchpad/edit.html.heex

11 lines
405 B
Text
Raw Normal View History

2024-06-02 05:50:36 +02:00
<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 %>