summaryrefslogtreecommitdiff
path: root/app/views/instance_statistics/dev_ops_score/index.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/instance_statistics/dev_ops_score/index.html.haml')
-rw-r--r--app/views/instance_statistics/dev_ops_score/index.html.haml33
1 files changed, 0 insertions, 33 deletions
diff --git a/app/views/instance_statistics/dev_ops_score/index.html.haml b/app/views/instance_statistics/dev_ops_score/index.html.haml
deleted file mode 100644
index 215624d27ce..00000000000
--- a/app/views/instance_statistics/dev_ops_score/index.html.haml
+++ /dev/null
@@ -1,33 +0,0 @@
-- page_title _('DevOps Score')
-- usage_ping_enabled = Gitlab::CurrentSettings.usage_ping_enabled
-
-.container
- - if usage_ping_enabled && show_callout?('dev_ops_score_intro_callout_dismissed')
- = render 'callout'
-
- .gl-mt-3
- - if !usage_ping_enabled
- = render 'disabled'
- - elsif @metric.blank?
- = render 'no_data'
- - else
- .devops
- .devops-header
- %h2.devops-header-title{ class: "devops-#{score_level(@metric.average_percentage_score)}-score" }
- = number_to_percentage(@metric.average_percentage_score, precision: 1)
- .devops-header-subtitle
- = _('index')
- %br
- = _('score')
- = link_to icon('question-circle', 'aria-hidden' => 'true'), help_page_path('user/instance_statistics/dev_ops_score')
-
- .devops-cards.board-card-container
- - @metric.cards.each do |card|
- = render 'card', card: card
-
- .devops-steps.d-none.d-lg-block.d-xl-block
- - @metric.idea_to_production_steps.each_with_index do |step, index|
- .devops-step{ class: "devops-#{score_level(step.percentage_score)}-score" }
- = custom_icon("i2p_step_#{index + 1}")
- %h4.devops-step-title
- = step.title