Sha256: 140774d0c32994575d67555b0760e6f5b86e58915978999dcce4d3339a3d2adc
Contents?: true
Size: 702 Bytes
Versions: 3
Compression:
Stored size: 702 Bytes
Contents
<table class="table table-striped"> <thead> <tr> <th>Date</th> <th>Subject</th> <th>Message</th> </tr> </thead> <tbody> <% messages.each do |msg| %> <%= content_tag :tr, class: cycle("","zebra") do %> <td><%= (time_ago_in_words(msg.last_message.created_at) + " ago") %></td> <td><%= msg.last_message.subject.html_safe %></td> <td><%= msg.last_message.body.html_safe %></td> <td> <%= link_to raw('<i class="glyphicon glyphicon-trash"></i>'), sufia.notification_path(msg.id), class: "itemicon itemtrash", title: "Delete File", method: :delete %> </td> <% end %> <% end %> </tbody> </table>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
sufia-4.0.0 | app/views/mailbox/_notifications.html.erb |
sufia-4.0.0.rc2 | app/views/mailbox/_notifications.html.erb |
sufia-4.0.0.rc1 | app/views/mailbox/_notifications.html.erb |