summaryrefslogtreecommitdiff
path: root/app/views/projects/pipelines/new.html.haml
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-04-12 19:57:22 +0200
committerKamil Trzcinski <ayufan@ayufan.eu>2016-04-13 11:03:39 +0200
commit406a796f76824e18f4dca2d29c41dcc3d2e4d457 (patch)
tree15faba18fd0132c0380cb91524855865037bd6f6 /app/views/projects/pipelines/new.html.haml
parente84c155f092600b90be291f0f7bb649811fa53fb (diff)
downloadgitlab-ce-406a796f76824e18f4dca2d29c41dcc3d2e4d457.tar.gz
Make Pipeline view work
Diffstat (limited to 'app/views/projects/pipelines/new.html.haml')
-rw-r--r--app/views/projects/pipelines/new.html.haml25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/views/projects/pipelines/new.html.haml b/app/views/projects/pipelines/new.html.haml
new file mode 100644
index 00000000000..39b1571b9cf
--- /dev/null
+++ b/app/views/projects/pipelines/new.html.haml
@@ -0,0 +1,25 @@
+- page_title "New Pipeline"
+= render "header_title"
+
+- if @error
+ .alert.alert-danger
+ %button{ type: "button", class: "close", "data-dismiss" => "alert"} &times;
+ = @error
+%h3.page-title
+ New Pipeline
+%hr
+
+= form_tag namespace_project_pipelines_path, method: :post, id: "new-pipeline-form", class: "form-horizontal js-create-branch-form js-requires-input" do
+ .form-group
+ = label_tag :ref, 'Create for', class: 'control-label'
+ .col-sm-10
+ = text_field_tag :ref, params[:ref] || @project.default_branch, required: true, tabindex: 2, class: 'form-control'
+ .help-block Existing branch name, tag
+ .form-actions
+ = button_tag 'Create pipeline', class: 'btn btn-create', tabindex: 3
+ = link_to 'Cancel', namespace_project_pipelines_path(@project.namespace, @project), class: 'btn btn-cancel'
+
+:javascript
+ var availableRefs = #{@project.repository.ref_names.to_json};
+
+ new NewBranchForm($('.js-create-branch-form'), availableRefs)