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

10 lines
403 B
Text
Raw Normal View History

2024-05-04 23:09:20 +02:00
<h1>
2024-05-04 23:09:44 +02:00
Editing moderation notes for image <%= link("##{@image.id}", to: ~p"/images/#{@image}") %>
2024-05-04 23:09:20 +02:00
</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 %>