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

_icon.html.haml « status « ci « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1fcbd9e7545fee2bb179969aef0bc3b3b24271d7 (plain)
1
2
3
4
5
6
7
8
9
10
- status            = local_assigns.fetch(:status)
- size              = local_assigns.fetch(:size, 16)
- type              = local_assigns.fetch(:type, 'pipeline')
- title             = local_assigns.fetch(:title, "#{type.titleize}: #{status.label}")
- tooltip_placement = local_assigns.fetch(:tooltip_placement, "left")
- css_classes       = "ci-status-link ci-status-icon ci-status-icon-#{status.group} has-tooltip"

- if status.has_details?
  = link_to status.details_path, class: css_classes, title: title, data: { html: true, placement: tooltip_placement } do
    = sprite_icon(status.icon, size: size)