Edit thread

<%= link_to @thread.forum.group, forumgroup_path(@thread.forum.group) %> → <%= link_to @thread.forum, @thread.forum %> → New thread <%= form_for @thread do |f|%> <% if mod? %> <% end %>
<%= f.label :sticky %> <%= f.check_box :sticky %>
<%= f.label :locked %> <%= f.check_box :locked %>
<%= f.text_field :title, placeholder: "Title" %>
<%= f.text_area :content, placeholder: "Text" %>

<%= f.submit "Update thread", class: "btn blue" %>

<% end %> <%= button_to "Delete thread", @thread, :method => "delete", data: {confirm: "Delete thread & comments forever?"}, class: "btn red right" %>