Retrospring/app/views/moderation/priority.haml

11 lines
242 B
Plaintext
Raw Normal View History

2020-04-25 09:05:35 -07:00
%h2
- if @host.nil?
Users sorted by reports
- else
Users with the same IP
#users
2020-05-08 17:45:47 -07:00
.row.row-cols-1.row-cols-sm-2.row-cols-md-3
2020-04-25 09:05:35 -07:00
- @users.each do |u, c|
2020-05-08 17:45:47 -07:00
.col
2020-05-17 09:15:02 -07:00
= render 'moderation/userbox', user: u, count: (c || 0)