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

<%= @forum.name %>

<%= link_to "New thread", new_forumthread_path, class: "btn blue" %>
<% @threads.each do |thread| %>
<%= link_to thread.title, forumthread_path(thread) %>
<% end %>