gitlabhq/app/views/merge_requests/_form.html.haml

82 lines
2.6 KiB
Plaintext
Raw Normal View History

= form_for [@project, @merge_request], html: { class: "new_merge_request form-horizontal" } do |f|
2012-01-28 16:21:00 +01:00
-if @merge_request.errors.any?
.alert-message.block-message.error
%ul
- @merge_request.errors.full_messages.each do |msg|
%li= msg
2011-12-13 22:24:31 +01:00
2012-07-17 07:19:16 +02:00
%h4.cdark 1. Select Branches
%br
2012-06-13 19:02:30 +02:00
.row
.span6
2012-06-13 19:02:30 +02:00
.mr_branch_box
%h5 From (Head Branch)
.body
.padded
= f.label :source_branch, "From", class: "control-label"
.controls
= f.select(:source_branch, @project.heads.map(&:name), { include_blank: "Select branch" }, style: "width:250px")
2012-06-13 19:02:30 +02:00
.bottom_commit
.mr_source_commit
.span6
2012-06-13 19:02:30 +02:00
.mr_branch_box
%h5 To (Base Branch)
.body
.padded
= f.label :target_branch, "To", class: "control-label"
.controls
= f.select(:target_branch, @project.heads.map(&:name), { include_blank: "Select branch" }, style: "width:250px")
2012-06-13 19:02:30 +02:00
.bottom_commit
.mr_target_commit
2012-07-17 07:19:16 +02:00
%h4.cdark 2. Fill info
2012-01-28 16:21:00 +01:00
.clearfix
2012-07-17 07:19:16 +02:00
.main_box
.top_box_content
= f.label :title do
%strong= "Title *"
.input= f.text_field :title, class: "input-xxlarge pad", maxlength: 255, rows: 5
2012-07-17 07:19:16 +02:00
.middle_box_content
= f.label :assignee_id do
%i.icon-user
Assign to
.input= f.select(:assignee_id, @project.users.all.collect {|p| [ p.name, p.id ] }, { include_blank: "Select user" }, style: "width:250px")
2011-12-13 22:24:31 +01:00
.control-group
2012-04-10 07:51:08 +02:00
.form-actions
= f.submit 'Save', class: "btn-primary btn"
2012-01-28 16:21:00 +01:00
- if @merge_request.new_record?
= link_to project_merge_requests_path(@project), class: "btn" do
2012-01-28 16:21:00 +01:00
Cancel
- else
= link_to project_merge_request_path(@project, @merge_request), class: "btn" do
2012-01-28 16:21:00 +01:00
Cancel
2011-11-28 08:39:43 +01:00
2011-12-13 19:40:45 +01:00
2011-11-28 08:39:43 +01:00
:javascript
$(function(){
$('select#merge_request_assignee_id').chosen();
$('select#merge_request_source_branch').chosen();
$('select#merge_request_target_branch').chosen();
var source_branch = $("#merge_request_source_branch");
var target_branch = $("#merge_request_target_branch");
$.get("#{branch_from_project_merge_requests_path(@project)}", {ref: source_branch.val() });
$.get("#{branch_to_project_merge_requests_path(@project)}", {ref: target_branch.val() });
source_branch.live("change", function() {
$.get("#{branch_from_project_merge_requests_path(@project)}", {ref: $(this).val() });
});
target_branch.live("change", function() {
$.get("#{branch_to_project_merge_requests_path(@project)}", {ref: $(this).val() });
});
2011-11-28 08:39:43 +01:00
});