summaryrefslogtreecommitdiff
path: root/app/views/groups
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-10-11 00:04:15 -0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-10-19 14:58:26 -0200
commitf98e97fe78dce11a1f88c3961be402d179e63927 (patch)
treebaa476bbbe5d431cc9169ab05f1ad133cb13b434 /app/views/groups
parent00e3c2e00f1c81aa2f7a76e4d93c8a1fb2074d6e (diff)
downloadgitlab-ce-f98e97fe78dce11a1f88c3961be402d179e63927.tar.gz
Reduce duplication between the project and group label forms
Diffstat (limited to 'app/views/groups')
-rw-r--r--app/views/groups/labels/_form.html.haml33
-rw-r--r--app/views/groups/labels/edit.html.haml2
-rw-r--r--app/views/groups/labels/new.html.haml2
3 files changed, 2 insertions, 35 deletions
diff --git a/app/views/groups/labels/_form.html.haml b/app/views/groups/labels/_form.html.haml
deleted file mode 100644
index a0b44b0dcfb..00000000000
--- a/app/views/groups/labels/_form.html.haml
+++ /dev/null
@@ -1,33 +0,0 @@
-= form_for @label, as: :label, url: url, html: { class: 'form-horizontal label-form js-quick-submit js-requires-input' } do |f|
- = form_errors(@label)
-
- .form-group
- = f.label :title, class: 'control-label'
- .col-sm-10
- = f.text_field :title, class: "form-control", required: true, autofocus: true
- .form-group
- = f.label :description, class: 'control-label'
- .col-sm-10
- = f.text_field :description, class: "form-control js-quick-submit"
- .form-group
- = f.label :color, "Background color", class: 'control-label'
- .col-sm-10
- .input-group
- .input-group-addon.label-color-preview &nbsp;
- = f.color_field :color, class: "form-control"
- .help-block
- Choose any color.
- %br
- Or you can choose one of suggested colors below
-
- .suggest-colors
- - suggested_colors.each do |color|
- = link_to '#', style: "background-color: #{color}", data: { color: color } do
- &nbsp;
-
- .form-actions
- - if @label.persisted?
- = f.submit 'Save changes', class: 'btn btn-save js-save-button'
- - else
- = f.submit 'Create Label', class: 'btn btn-create js-save-button'
- = link_to 'Cancel', @previous_labels_path, class: 'btn btn-cancel'
diff --git a/app/views/groups/labels/edit.html.haml b/app/views/groups/labels/edit.html.haml
index 28471f407ad..836981fc6fd 100644
--- a/app/views/groups/labels/edit.html.haml
+++ b/app/views/groups/labels/edit.html.haml
@@ -4,4 +4,4 @@
Edit Label
%hr
-= render 'form', url: group_label_path(@group, @label)
+= render 'shared/labels/form', url: group_label_path(@group, @label), back_path: @previous_labels_path
diff --git a/app/views/groups/labels/new.html.haml b/app/views/groups/labels/new.html.haml
index 257ae97de03..2be87460b1d 100644
--- a/app/views/groups/labels/new.html.haml
+++ b/app/views/groups/labels/new.html.haml
@@ -5,4 +5,4 @@
New Label
%hr
-= render 'form', url: group_labels_path
+= render 'shared/labels/form', url: group_labels_path, back_path: @previous_labels_path