Retrospring/app/views/moderation/_userbox.html.haml

20 lines
608 B
Plaintext
Raw Normal View History

2020-05-08 17:45:47 -07:00
.card.h-100.userbox
%img.userbox__header{src: user.profile_header.url(:mobile)}
2020-04-19 14:09:41 -07:00
.card-body
2020-05-08 17:45:47 -07:00
%img.userbox__avatar{src: user.profile_picture.url(:small)}
%a.profile__name{href: show_user_profile_path(user.screen_name)}
- unless user.display_name.blank?
.profile__display-name
= user.display_name
2015-07-23 10:38:42 -07:00
.row
.col-md-12.col-sm-12.col-xs-12
- unless count.nil?
2015-07-24 08:04:46 -07:00
%h4.entry-text.text-center#asked-count
2015-07-23 10:38:42 -07:00
= count
2015-07-23 10:53:51 -07:00
= 'Report'.pluralize(count)
2015-07-23 10:38:42 -07:00
%br
%br
- else
%br
= render 'actions', user: user