Retrospring/app/views/moderation/_userbox.haml

22 lines
670 B
Plaintext
Raw Normal View History

2020-05-08 17:45:47 -07:00
.card.h-100.userbox
2020-05-10 02:57:18 -07:00
%img.userbox__header{ src: user.profile_header.url(:mobile) }
2020-04-19 14:09:41 -07:00
.card-body
2020-05-10 02:57:18 -07:00
%img.userbox__avatar{ src: user.profile_picture.url(:small) }
%a.profile__name{ href: show_user_profile_path(user.screen_name) }
2020-05-08 17:45:47 -07:00
- unless user.display_name.blank?
.profile__display-name
= user.display_name
2020-05-10 02:57:18 -07:00
.profile__screen-name
= user.screen_name
2015-07-23 10:38:42 -07:00
.row
.col-md-12.col-sm-12.col-xs-12
2020-05-10 02:57:18 -07:00
- if count.positive?
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