% title "Edit Thread: #{@thread}" %>
| <%= f.label :sticky %> | <%= f.check_box :sticky %> |
| <%= f.label :locked %> | <%= f.check_box :locked %> |
| <%= f.label :forum_id, "Move thread" %> | <% forums = [] Forum.all.sort_by{ |f| f.forumgroup.position || 0 }.each do |f| forums << ["#{f.forumgroup.name} → #{f.name}", f.id] end %><%= f.select :forum_id, forums %> |
<%= f.submit "Update thread", class: "btn blue left" %>
<% end %> <%= button_to "Delete thread", @thread, :method => "delete", data: {confirm: "Delete thread & comments forever?"}, class: "btn red right" %>