Forum

<% @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 topic.creator.name, user_path(topic.creator) %> <%= link_to topic.updater.name, user_path(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 %>