Topics

<% if current_user %> <%= link_to "New Topic", new_topic_path %> <% end %> <% if @topics.empty? %> There are currently no topics. <% else %> <% @topics.each do |topic| %> <% end %>
Subject Posts count Last post at
<%= link_to topic.subject, topic %> <%= topic.posts_count %> last post was <%= time_ago_in_words(topic.last_post.created_at) %> ago by <%= topic.last_post.user %>
<% end %>