10 lines
217 B
Plaintext
10 lines
217 B
Plaintext
<%= form_for [:admin, @proposal] do |f| %>
|
|
|
|
<%= render "shared/errors", resource: @proposal %>
|
|
|
|
<%= f.check_box :selected %>
|
|
|
|
<%= f.submit t("admin.proposals.form.update"), class: "button success" %>
|
|
|
|
<% end %>
|