Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_current_user_dropdown_item.html.haml « header « layouts « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa0a6364a15604cbc9adb7b94f3d2e6d4de01685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.gl-font-weight-bold
  = current_user.name
  - if current_user.status&.busy?
    = render Pajamas::BadgeComponent.new(s_('UserProfile|Busy'), size: 'sm', variant: 'warning')
= current_user.to_reference
- if current_user.status
  .user-status.d-flex.align-items-center.gl-mt-2.gl-mr-0.gl-font-sm.has-tooltip{ title: current_user.status.message_html, data: { html: 'true', placement: 'bottom' } }
    - if current_user.status.customized?
      .user-status-emoji.d-flex.align-items-center
        = emoji_icon current_user.status.emoji
    %span.user-status-message.str-truncated
      = current_user.status.message_html.html_safe