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

_starrer.html.haml « starrers « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8a2c72d9ce346d8bc38ef5ffd5112d299e2664d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- starrer = local_assigns.fetch(:starrer)

.col-lg-3.col-md-4.col-sm-12
  .card
    .card-body
      = image_tag avatar_icon_for_user(starrer.user, 40), class: "avatar s40", alt: ''

      .user-info
        .block-truncated
          = link_to starrer.user.name, user_path(starrer.user), class: 'user js-user-link', data: { user_id: starrer.user.id }

        .block-truncated
          %span.cgray= starrer.user.to_reference

          - if starrer.user == current_user
            %span.badge.badge-success.gl-ml-2= _("It's you")

        .block-truncated
          = time_ago_with_tooltip(starrer.starred_since)