retrospring/app/views/shared/_sidebar.haml
Georg Gadinger ea0685136e Rename Groups to Lists
haha regexp go brrr

special thanks to @seatsea for helping me out with the French locales
2020-05-25 18:04:54 +02:00

21 lines
810 B
Text

.card.userbox
%img.userbox__header{ src: current_user.profile_header.url(:mobile) }
.card-body
%img.userbox__avatar{ src: current_user.profile_picture.url(:small) }
.profile__name
- unless current_user.display_name.blank?
.profile__display-name
= current_user.display_name
.profile__screen-name
= current_user.screen_name
- unless @list.nil?
.card
.card-header= t('views.list.members')
.card-body
- if @list.members.empty?
%p.text-muted No members yet.
- @list.members.each do |member|
%a{ href: show_user_profile_path(member.user.screen_name), title: member.user.screen_name, data: { toggle: :tooltip, placement: :top } }
%img.avatar-xs{ src: member.user.profile_picture.url(:medium) }
= render 'shared/links'