Topics
<%= link_to "New topic", :action => "new_topic" %>
<% for topic in @topics %>
<%= link_to "#{topic.title} (#{topic.replies.length} replies)", :action => "topic", :path_params => { "id" => topic.id } %>
<% end %>