summaryrefslogtreecommitdiff
path: root/app/views/merge_requests/_form.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/merge_requests/_form.html.haml')
-rw-r--r--app/views/merge_requests/_form.html.haml20
1 files changed, 10 insertions, 10 deletions
diff --git a/app/views/merge_requests/_form.html.haml b/app/views/merge_requests/_form.html.haml
index 4f20a06fd25..b6c12397d6c 100644
--- a/app/views/merge_requests/_form.html.haml
+++ b/app/views/merge_requests/_form.html.haml
@@ -1,4 +1,4 @@
-= form_for [@project, @merge_request], :html => { :class => "new_merge_request form-horizontal" } do |f|
+= form_for [@project, @merge_request], html: { class: "new_merge_request form-horizontal" } do |f|
-if @merge_request.errors.any?
.alert-message.block-message.error
%ul
@@ -14,9 +14,9 @@
%h5 From (Head Branch)
.body
.padded
- = f.label :source_branch, "From", :class => "control-label"
+ = f.label :source_branch, "From", class: "control-label"
.controls
- = f.select(:source_branch, @project.heads.map(&:name), { :include_blank => "Select branch" }, :style => "width:250px")
+ = f.select(:source_branch, @project.heads.map(&:name), { include_blank: "Select branch" }, style: "width:250px")
.bottom_commit
.mr_source_commit
@@ -25,9 +25,9 @@
%h5 To (Base Branch)
.body
.padded
- = f.label :target_branch, "To", :class => "control-label"
+ = f.label :target_branch, "To", class: "control-label"
.controls
- = f.select(:target_branch, @project.heads.map(&:name), { :include_blank => "Select branch" }, :style => "width:250px")
+ = f.select(:target_branch, @project.heads.map(&:name), { include_blank: "Select branch" }, style: "width:250px")
.bottom_commit
.mr_target_commit
@@ -38,22 +38,22 @@
.top_box_content
= f.label :title do
%strong= "Title *"
- .input= f.text_field :title, :class => "input-xxlarge pad", :maxlength => 255, :rows => 5
+ .input= f.text_field :title, class: "input-xxlarge pad", maxlength: 255, rows: 5
.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")
+ .input= f.select(:assignee_id, @project.users.all.collect {|p| [ p.name, p.id ] }, { include_blank: "Select user" }, style: "width:250px")
.control-group
.form-actions
- = f.submit 'Save', :class => "btn-primary btn"
+ = f.submit 'Save', class: "btn-primary btn"
- if @merge_request.new_record?
- = link_to project_merge_requests_path(@project), :class => "btn" do
+ = link_to project_merge_requests_path(@project), class: "btn" do
Cancel
- else
- = link_to project_merge_request_path(@project, @merge_request), :class => "btn" do
+ = link_to project_merge_request_path(@project, @merge_request), class: "btn" do
Cancel