Forum

Categories: <%= link_to "All", forum_topics_path %>, <%= ForumTopic::CATEGORIES.map {|id, name| link_to_unless_current(name, forum_topics_path(:search => {:category_id => id}))}.join(", ").html_safe %>

<% @forum_topics.each do |topic| %> <% end %>
Title Creator Updated by Updated at
<% if topic.is_sticky? %> Sticky: <% end %> <% if topic.updated_at > (CurrentUser.last_forum_read_at || Time.now) %> NEW <% end %> <%= link_to topic.title, forum_topic_path(topic) %> <% if topic.response_count > Danbooru.config.posts_per_page %> <%= link_to "page #{topic.last_page}", forum_topic_path(topic, :page => topic.last_page), :class => "last-page" %> <% end %> <% if topic.is_locked? %> (locked) <% end %> <%= link_to_user topic.creator %> <%= link_to_user topic.updater %> <%= compact_time topic.updated_at %>
<%= numbered_paginator(@forum_topics) %>
<%= render "secondary_links" %> <% content_for(:page_title) do %> Forum - <%= Danbooru.config.app_name %> <% end %>