14 lines
782 B
Text
14 lines
782 B
Text
- 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"
|