%= link_to @forum.group, forumgroup_path(@forum.group) %> → <%= link_to @forum, @forum %> → New thread
New thread
<%= simple_form_for [@forum, @thread] do |f|%>
<%= f.label :title %>
<%= f.label :content, "Text" %>
<%= f.input :title, placeholder: "Title" %>
<%= f.input :content, placeholder: "Text" %>
<% if mod? %>
<%= f.input :sticky %> <%= f.label :sticky %>
<%= f.input :locked %> <%= f.label :locked %>
<% end %>
<%= f.submit "Create forum", class: "btn blue" %>
<% end %>