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

index.html.haml « pipeline_schedules « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90417a852d5d8cd6f43797c3348f7230c2d42e65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- breadcrumb_title _("Schedules")
- page_title _("Pipeline Schedules")
- add_page_specific_style 'page_bundles/pipeline_schedules'

#pipeline-schedules-callout{ data: { docs_url: help_page_path('ci/pipelines/schedules'), illustration_url: image_path('illustrations/pipeline_schedule_callout.svg') } }
.top-area
  - schedule_path_proc = ->(scope) { pipeline_schedules_path(@project, scope: scope) }
  = render "tabs", schedule_path_proc: schedule_path_proc, all_schedules: @all_schedules, scope: @scope

  - if can?(current_user, :create_pipeline_schedule, @project)
    .nav-controls
      = link_to new_project_pipeline_schedule_path(@project), class: 'btn btn-success' do
        %span= _('New schedule')

- if @schedules.present?
  %ul.content-list
    = render partial: "table"
- else
  .card.bg-light.gl-mt-3
    .nothing-here-block= _("No schedules")