<% content_for(:secondary_links) do %>
  • <%= link_to "Listing", forum_topics_path %>
  • <%= link_to "New", new_forum_topic_path %>
  • <%= link_to "Search", search_forum_posts_path %>
  • <%= link_to "Help", wiki_pages_path(:title => "help:forum") %>
  • <% if @forum_topic %>
  • |
  • <%= link_to "Reply", new_forum_post_path(:topic_id => @forum_topic.id) %>
  • <% unless @forum_topic.new_record? %>
  • <%= link_to "Edit", edit_forum_topic_path(@forum_topic) %>
  • <% if CurrentUser.is_moderator? %>
  • <%= link_to "Delete", forum_topic_path(@forum_topic), :remote => true, :method => :delete, :confirm => "Do you want to delete this forum topic?" %>
  • <% end %> <% end %> <% end %>
    <% end %>