summaryrefslogtreecommitdiff
path: root/app/views/ci/status/_badge.html.haml
blob: 35a3563dff1f24f3fcdebca4a2d4ac8d3a3cfb23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- status = local_assigns.fetch(:status)
- link   = local_assigns.fetch(:link, true)
- title  = local_assigns.fetch(:title, nil)
- css_classes = "ci-status ci-#{status.group} #{'has-tooltip' if title.present?}"

- if link && status.has_details?
  = link_to status.details_path, class: css_classes, title: title do
    = sprite_icon(status.icon)
    = status.text
- else
  %span{ class: css_classes, title: title }
    = sprite_icon(status.icon)
    = status.text