<% title @forum.name %> <%= 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) %>
<% if rpl = thread.replies.last %> <%= rpl.author.name %> <%= link_to "replied", forumthread_path(thread) + "#reply-#{rpl.id}" %> . <% else %> No replies yet. <% end %>
<% end %>