This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/views/forums/show.html.erb
2014-02-01 19:48:40 +01:00

10 lines
418 B
Plaintext

<%= link_to @forum.group, forumgroup_path(@forum.group) %> → <%= link_to @forum %>
<h1><%= @forum.name %></h1>
<%= link_to "New thread", new_forum_forumthread_path(@forum), class: "btn blue" %>
<div id="forum_threads">
<% @threads.each do |thread| %>
<div class="forum_thread" id="thread-<%= thread.id %>">
<%= link_to thread.title, forum_forumthread_path(@forum, thread) %>
</div>
<% end %>
</div>