philomena/lib/philomena_web/templates/topic/poll/edit.html.heex

12 lines
320 B
Text
Raw Normal View History

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