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

index.html.haml « jobs « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1da3881c10492be24b8e4f0615d1c88945b94f45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- page_title _("Jobs")
- add_page_specific_style 'page_bundles/ci_status'

- if Feature.enabled?(:jobs_table_vue, @project, default_enabled: :yaml)
  #js-jobs-table{ data: { full_path: @project.full_path, job_counts: job_counts.to_json, job_statuses: job_statuses.to_json, pipeline_editor_path: project_ci_pipeline_editor_path(@project), empty_state_svg_path: image_path('jobs-empty-state.svg') } }
- else
  .top-area
    - build_path_proc = ->(scope) { project_jobs_path(@project, scope: scope) }
    = render "shared/builds/tabs", build_path_proc: build_path_proc, all_builds: @all_builds, scope: @scope

  .content-list.builds-content-list
    = render "table", builds: @builds, project: @project