retrospring/app/views/moderation/priority.haml

11 lines
247 B
Text
Raw Normal View History

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