<%= link_to "Back to Forum List", forums_path if can? :create, Forum %>
<%= @forum.title %> <%= link_to "New Topic", new_forum_topic_path(@forum) if can? :create, Topic %> <%= link_to "Edit Forum", edit_forum_path(@forum) if can? :manage, @forum %> <%= link_to "Delete Forum", forum_path(@forum), :confirm => "Are you sure you want to delete this forum?", :method => :delete if can? :manage, @forum %>
<% if @forum.topics.size > 0 %> <% else %> <% end %> <% @forum.topics.each do |topic| %> <% end %>
Topic Replies Views Last Post

There aren't any topics yet <%= link_to "create one", new_forum_topic_path(@forum) if can? :create, Topic %>

<%= image_tag 'ruby.png' %> <%= link_to topic.title, topic_path(topic) %>
by <%= topic.user.username %>
<%= topic.posts.size - 1 %> <%= topic.hits %> <%= topic.posts.last.created_at %>
by <%= topic.posts.last.user.username %>

<%= link_to "Back to Forum List", forums_path if can? :create, Forum %>