notebook/app/views/admin/reported_shares.html.erb
2020-07-07 16:52:16 -07:00

10 lines
214 B
Plaintext

<% @feed.each do |share| %>
<%= render partial: 'stream/share', locals: { share: share } %>
<blockquote>
ID: <%= share.id %>
</blockquote>
<% end %>
<% if @feed.empty? %>
We're all caught up!
<% end %>