debian-mirror-gitlab/app/views/projects/pipeline_schedules/index.html.haml

23 lines
805 B
Text
Raw Normal View History

2018-03-17 18:26:18 +05:30
- breadcrumb_title _("Schedules")
2017-09-10 17:25:29 +05:30
2017-08-17 22:00:37 +05:30
- @no_container = true
2017-09-10 17:25:29 +05:30
- page_title _("Pipeline Schedules")
2017-08-17 22:00:37 +05:30
%div{ class: container_class }
#pipeline-schedules-callout{ data: { docs_url: help_page_path('user/project/pipelines/schedules') } }
.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
2017-09-10 17:25:29 +05:30
- if can?(current_user, :create_pipeline_schedule, @project)
2018-03-17 18:26:18 +05:30
.nav-controls
2018-12-05 23:21:45 +05:30
= link_to new_project_pipeline_schedule_path(@project), class: 'btn btn-success' do
2017-09-10 17:25:29 +05:30
%span= _('New schedule')
2017-08-17 22:00:37 +05:30
- if @schedules.present?
%ul.content-list
= render partial: "table"
- else
2018-11-08 19:23:39 +05:30
.card.bg-light
2017-09-10 17:25:29 +05:30
.nothing-here-block= _("No schedules")