<%= 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.author.avatar(64), thread.author, title: thread.author.ign) %> <%= render partial: "users/username", locals: { user: thread.author } %> <%= link_to thread do %><% end %> <%= link_to pluralize(thread.replies.count, "Reply"), thread %>
<%= link_to thread.title, forumthread_path(thread), class: "item #{"locked" if thread.locked}#{"sticky" if thread.sticky}" %>
<% end %>