Now that all uses of the images and thumbnails have been migrated to flex grids, we can remove the margin and padding from the original css classes and revert to using them.
16 lines
577 B
Text
16 lines
577 B
Text
<% reports.each do |report| %>
|
|
<div class="row">
|
|
<div class="col-auto">
|
|
<%= link_to user_thumbnail(report.user), user_path(report.user) %>
|
|
</div>
|
|
<div class="col">
|
|
<p class="text-muted mb-0">
|
|
<%= t ".reported_by_html", :category => report.category,
|
|
:user => link_to(report.user.display_name, user_path(report.user)),
|
|
:updated_at => l(report.updated_at.to_datetime, :format => :friendly) %>
|
|
</p>
|
|
<p><%= report.details %></p>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<% end %>
|