%= link_to @forum.group, forumgroup_path(@forum.group) %> → <%= link_to @forum %>
<%= @forum %>
<% if @forum.can_write?(current_user) %>
<%= link_to "New thread", new_forumthread_path(forum: @forum), class: "btn blue" %>
<% end %>
<% @threads.each do |thread| %>
<%= link_to thread.title, forumthread_path(thread), class: "item #{"locked" if thread.locked}#{"sticky" if thread.sticky}" %>
<% end %>