retrospring/app/views/shared/_userbox.haml
2021-12-23 22:01:56 +01:00

12 lines
474 B
Text

- type ||= :nil
.card.h-100.userbox
%img.userbox__header{ src: user.profile_header.url(:mobile) }
.card-body
%img.userbox__avatar{ src: user.profile_picture.url(:small) }
%a.profile__name{ href: show_user_profile_path(user.screen_name) }
- unless user.profile.display_name.blank?
.profile__display-name
= user.profile.display_name
.profile__screen-name
= user.screen_name
= render 'user/actions', user: user, type: type