Topic: <%= @forum_topic.title %> <% if @forum_topic.is_deleted? %> (deleted) <% end %>

<% if @forum_topic.is_locked? %>

This topic has been locked.

<% end %> <%= render "forum_posts/listing", :forum_posts => @forum_posts %>

<%= link_to "Reply »".html_safe, new_forum_post_path(:topic_id => @forum_topic.id) %>

<%= render "forum_posts/form", :forum_post => ForumPost.new(:topic_id => @forum_topic.id) %>
<%= numbered_paginator(@forum_posts) %>
<%= render "secondary_links" %> <%= content_for(:page_title) do %> Forum - <%= @forum_topic.title %> - <%= Danbooru.config.app_name %> <% end %>