mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-19 14:57:50 -05:00
24 lines
571 B
Plaintext
24 lines
571 B
Plaintext
- howmany ||= 100
|
|
- if posts.length > 0
|
|
%table.table.table-striped
|
|
%tr
|
|
%th Subject
|
|
%th Posted by
|
|
%th Posted
|
|
%th Most recent activity
|
|
%th Comments
|
|
|
|
- posts.recently_active[0..howmany-1].each do |post|
|
|
%tr
|
|
%td
|
|
= link_to strip_tags(post.subject), post
|
|
%td
|
|
=link_to post.author, post.author
|
|
%td
|
|
= post.created_at.to_s(:date)
|
|
%td
|
|
= distance_of_time_in_words(post.recent_activity, Time.zone.now)
|
|
ago
|
|
%td
|
|
= post.comments.count.to_s
|