<% title "New Thread: #{@thread.forum.name}" %> <%= link_to @thread.forum.group, forumgroup_path(@thread.forum.group) %> → <%= link_to @thread.forum, @thread.forum %> → New thread

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" %> <%= render partial: "md_editor", locals: {name: "forumthread[content]", content: @thread.content, mini: false} %> <%= f.hidden_field :forum_id %>

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

<% end %>