<%= link_to @forum.group, forumgroup_path(@forum.group) %> → <%= link_to @forum %>

<%= link_to "New thread", new_forum_forumthread_path(@forum), class: "btn blue" %>

<%= @forum.name %> <%= link_to "edit", edit_forum_path(@forum), class: "editlink" %>
<% @threads.each do |thread| %> <%= link_to thread.title, forum_forumthread_path(@forum, thread), class: "item#{" locked" if thread.locked}#{" sticky" if thread.sticky}" %> <% end %>