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

new.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: 2d4ed5a9872f6baf82ba8da8c4e961043ceecd65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- breadcrumb_title _('Schedules')
- @breadcrumb_link = namespace_project_pipeline_schedules_path(@project.namespace, @project)
- page_title _("New Pipeline Schedule")
- add_page_specific_style 'page_bundles/pipeline_schedules'

- add_to_breadcrumbs("Pipelines", project_pipelines_path(@project))

%h1.page-title.gl-font-size-h-display
  = _("Schedule a new pipeline")

- if Feature.enabled?(:pipeline_schedules_vue, @project)
  #pipeline-schedules-form-new{ data: { full_path: @project.full_path, cron: @schedule.cron, daily_limit: @schedule.daily_limit, timezone_data: timezone_data.to_json, cron_timezone: @schedule.cron_timezone, project_id: @project.id, default_branch: @project.default_branch, settings_link: project_settings_ci_cd_path(@project), } }
- else
  = render "form"