2014-04-04 19:38:44 +00:00
|
|
|
<div class="header"><%= t('widget.posts') %></div>
|
2014-03-23 00:22:25 +00:00
|
|
|
<div class="body">
|
|
|
|
<div class="content">
|
|
|
|
<h3>
|
|
|
|
Latest forum posts
|
|
|
|
</h3>
|
|
|
|
<ol>
|
|
|
|
<% Topic.basic.recent.latest_page(1).each do |topic| %>
|
|
|
|
<li>
|
2014-04-04 19:38:44 +00:00
|
|
|
<%= link_to shorten(topic, 35), lastpost(topic) %>
|
2014-03-23 00:22:25 +00:00
|
|
|
</li>
|
|
|
|
<% end %>
|
|
|
|
</ol>
|
|
|
|
|
|
|
|
<h3>
|
|
|
|
Latest comments
|
|
|
|
</h3>
|
|
|
|
<ol>
|
|
|
|
<% Comment.recent.filtered.each do |comment| %>
|
|
|
|
<li>
|
|
|
|
<%= namelink comment.commentable, 15 %>
|
2014-04-04 19:38:44 +00:00
|
|
|
by <%= namelink comment.user, 15 %>
|
2014-03-23 00:22:25 +00:00
|
|
|
</li>
|
|
|
|
<% end %>
|
|
|
|
</ol>
|
|
|
|
</div>
|
|
|
|
</div>
|