2014-04-06 14:14:03 +00:00
|
|
|
<div class="widget posts">
|
|
|
|
<h4><%= t('widget.posts') %></h4>
|
2014-03-23 00:22:25 +00:00
|
|
|
|
2014-04-09 00:50:07 +00:00
|
|
|
<div class="widget-content-wrapper">
|
|
|
|
<div class="separator">Latest forum posts</div>
|
|
|
|
<ol>
|
|
|
|
<% Topic.basic.recent.latest_page(1).each do |topic| %>
|
|
|
|
<li>
|
|
|
|
<%= link_to shorten(topic, 28), lastpost(topic) %>
|
|
|
|
</li>
|
|
|
|
<% end %>
|
|
|
|
</ol>
|
|
|
|
|
|
|
|
<div class="separator">Latest comments</div>
|
|
|
|
<ol>
|
|
|
|
<% Comment.recent.filtered.each do |comment| %>
|
|
|
|
<li>
|
|
|
|
<%= namelink comment.commentable, 15 %>
|
|
|
|
by <%= namelink comment.user, 10 %>
|
|
|
|
</li>
|
|
|
|
<% end %>
|
|
|
|
</ol>
|
2014-04-06 14:14:03 +00:00
|
|
|
</div>
|
|
|
|
</div>
|