Sha256: 89745241cd28e0de8bce639811ec2d5c2de1cba2b384dd92a617de3dc3e5d710
Contents?: true
Size: 510 Bytes
Versions: 22
Compression:
Stored size: 510 Bytes
Contents
<table id="activity" class="table table-zebra-striped table-bordered"> <caption class="sr-only">Activity of users you follow</caption> <thead> <tr> <th>User Activity</th> <th>Date</th> </tr> </thead> <tbody> <% events.each do |event| %> <% next if event[:action].blank? or event[:timestamp].blank? %> <tr> <td><%= event[:action].html_safe %></td> <td><%= time_ago_in_words(Time.at(event[:timestamp].to_i)) %> ago</td> </tr> <% end %> </tbody> </table>
Version data entries
22 entries across 22 versions & 1 rubygems