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

_overall.haml « charts « pipelines « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 93083397d5b83ce191a1345a28514382538441b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%h4 Overall stats
%ul
  %li
    Total:
    %strong= pluralize @counts[:total], 'pipeline'
  %li
    Successful:
    %strong= pluralize @counts[:success], 'pipeline'
  %li
    Failed:
    %strong= pluralize @counts[:failed], 'pipeline'
  %li
    Success ratio:
    %strong
      #{success_ratio(@counts)}%