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 20:26:39 +01:00

17 lines
758 B
Plaintext

<%= link_to @forum.group, forumgroup_path(@forum.group) %> → <%= link_to @forum %>
<p><%= link_to "New thread", new_forum_forumthread_path(@forum), class: "btn blue" %></p>
<div id="forum_groups">
<div id="forum-<%= @forum.id %>" class="group">
<div class="header">
<%= @forum.name %> <%= link_to "edit", edit_forum_path(@forum), class: "editlink" %>
</div>
<div class="forums">
<% @threads.select{ |t| t.sticky }.each do |thread| %>
<%= link_to thread.title, forum_forumthread_path(@forum, thread), class: "forum sticky" %>
<% end %>
<% @threads.reject{ |t| t.sticky }.each do |thread| %>
<%= link_to thread.title, forum_forumthread_path(@forum, thread), class: "forum" %>
<% end %>
</div>