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

_badge.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: f2135af268679d52629575635a9e91bb306ac5d4 (plain)
1
2
3
4
5
6
7
8
9
10
- status = local_assigns.fetch(:status)

- if status.has_details?
  = link_to status.details_path, class: "ci-status ci-#{status}" do
    = custom_icon(status.icon)
    = status.text
- else
  %span{ class: "ci-status ci-#{status}" }
    = custom_icon(status.icon)
    = status.text