<%= link_to @forum.group, @forum.group %> → <%= link_to @forum, @forum %> → New thread

New thread

<%= simple_form_for @thread do |f|%>
<%= f.label :title %> <%= f.label :sticky if mod? %> <%= f.label :locked if mod? %> <%= f.label :content, "Text" %>
<%= f.input :title, placeholder: "Title" %> <%= f.input :sticky, as: :select, collection: [["No", false], ["Yes", true]], include_blank: false if mod? %> <%= f.input :locked, as: :select, collection: [["No", false], ["Yes", true]], include_blank: false if mod? %> <%= f.input :content, placeholder: "Text" %>
<%= f.submit "Create forum", class: "btn blue" %>
Yea i know this is ugly :D <% end %>