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

11 lines
320 B
Text

<h1>
Editing Poll
</h1>
<%= form_for @changeset, ~p"/forums/#{@forum}/topics/#{@topic}/poll", fn f -> %>
<%= render(PhilomenaWeb.Topic.PollView, "_form.html", f: f) %>
<br />
<br />
<div class="action">
<%= submit("Save", class: "button", data: [disable_with: raw("Saving&hellip;")]) %>
</div>
<% end %>