summaryrefslogtreecommitdiff
path: root/app/views/projects/graphs/ci/_overall.haml
blob: 9550d71947195ba2525559360f2d0edf5fc8db3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- ci_project = @project.gitlab_ci_project
%fieldset
  %legend Overall
  %p
    Total:
    %strong= pluralize ci_project.builds.count(:all), 'build'
  %p
    Successful:
    %strong= pluralize ci_project.builds.success.count(:all), 'build'
  %p
    Failed:
    %strong= pluralize ci_project.builds.failed.count(:all), 'build'

  %p
    Success ratio:
    %strong
      #{success_ratio(ci_project.builds.success, ci_project.builds.failed)}%

  %p
    Commits covered:
    %strong
      = ci_project.commits.count(:all)