Add sticky class to topic links.

This commit is contained in:
simplefl 2015-04-09 19:23:29 +02:00
parent 85a2092a7c
commit 2f8f41d6f3

View file

@ -33,11 +33,13 @@
<b>Locked: </b> <b>Locked: </b>
<% end %> <% end %>
<%= link_to (h topic), topic, class: ((cuser and !topic.read_by? cuser) ? "unread" : "read") %> <%= link_to (h topic), topic,
class: ((cuser and !topic.read_by? cuser) ? "unread" : "read") +
((topic.state == Topic::STATE_STICKY) ? " sticky" : "") %>
</h5> </h5>
<% if topic.posts.count > Topic::POSTS_PAGE %> <% if topic.posts.count > Topic::POSTS_PAGE %>
Page: Page:
<% (1..((topic.posts.count/Topic::POSTS_PAGE).ceil + 1)).to_a.each do |page| %> <% (1..((topic.posts.count/Topic::POSTS_PAGE).ceil + 1)).to_a.each do |page| %>
<%= ", " unless page == 1 %> <%= ", " unless page == 1 %>
<%= link_to page, topic_url(topic, page: page) %> <%= link_to page, topic_url(topic, page: page) %>