debian-mirror-gitlab/app/views/projects/labels/_form.html.haml

36 lines
1.3 KiB
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
= form_for [@project.namespace.becomes(Namespace), @project, @label], html: { class: 'form-horizontal label-form js-requires-input' } do |f|
2014-09-02 18:07:02 +05:30
-if @label.errors.any?
.row
2015-09-11 14:41:01 +05:30
.col-sm-offset-2.col-sm-10
2015-04-26 12:48:37 +05:30
.alert.alert-danger
2014-09-02 18:07:02 +05:30
- @label.errors.full_messages.each do |msg|
%span= msg
%br
.form-group
= f.label :title, class: 'control-label'
.col-sm-10
2015-12-23 02:04:40 +05:30
= f.text_field :title, class: "form-control js-quick-submit", required: true, autofocus: true
2014-09-02 18:07:02 +05:30
.form-group
2015-12-23 02:04:40 +05:30
= f.label :color, "Background color", class: 'control-label'
2014-09-02 18:07:02 +05:30
.col-sm-10
.input-group
.input-group-addon.label-color-preview  
2015-04-26 12:48:37 +05:30
= f.color_field :color, class: "form-control"
2014-09-02 18:07:02 +05:30
.help-block
2015-04-26 12:48:37 +05:30
Choose any color.
2014-09-02 18:07:02 +05:30
%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
 
.form-actions
2015-12-23 02:04:40 +05:30
- 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'
2015-04-26 12:48:37 +05:30
= link_to "Cancel", namespace_project_labels_path(@project.namespace, @project), class: 'btn btn-cancel'