gitlab-org--gitlab-foss/app/views/projects/services/_form.html.haml

30 lines
1.3 KiB
Text
Raw Normal View History

- content_for :page_specific_javascripts do
= webpack_bundle_tag('integrations')
2016-05-17 05:38:01 -04:00
.row.prepend-top-default.append-bottom-default
.col-lg-3
%h4.prepend-top-0
= @service.title
= boolean_to_icon @service.activated?
2013-05-22 09:58:44 -04:00
2016-05-17 05:38:01 -04:00
%p= @service.description
.col-lg-9
2017-06-02 07:44:04 -04:00
= form_for(@service, as: :service, url: namespace_project_service_path(@project.namespace, @project, @service.to_param), method: :put, html: { class: 'gl-show-field-errors form-horizontal js-integration-settings-form', data: { 'can-test' => @service.can_test?, 'test-url' => test_namespace_project_service_path } }) do |form|
= render 'shared/service_settings', form: form, subject: @service
.footer-block.row-content-block
%button.btn.btn-save{ type: 'submit' }
2017-05-31 04:20:29 -04:00
= icon('spinner spin', class: 'hidden js-btn-spinner')
%span.js-btn-label
Save changes
 
- if @service.valid? && @service.activated?
- unless @service.can_test?
- disabled_class = 'disabled'
- disabled_title = @service.disabled_title
2017-06-02 07:44:04 -04:00
= link_to 'Cancel', namespace_project_settings_integrations_path(@project.namespace, @project), class: 'btn btn-cancel'
- if lookup_context.template_exists?('show', "projects/services/#{@service.to_param}", true)
%hr
2017-05-31 10:47:31 -04:00
= render "projects/services/#{@service.to_param}/show"