summaryrefslogtreecommitdiff
path: root/app/views/projects/services/_form.html.haml
blob: 2b1e08f48809599458b14f8b70a02ca9ec983fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- if lookup_context.template_exists?('top', "projects/services/#{@service.to_param}", true)
  = render "projects/services/#{@service.to_param}/top"

.row.gl-mt-3.gl-mb-3
  .col-lg-4
    %h3.page-title.gl-mt-0
      = @service.title
      - [true, false].each do |value|
        - hide_class = 'd-none' if @service.operating? != value
        %span.js-service-active-status{ class: hide_class, data: { value: value.to_s } }
          = boolean_to_icon value

    - if @service.respond_to?(:detailed_description)
      %p= @service.detailed_description
  .col-lg-8
    = form_for(@service, as: :service, url: scoped_integration_path(@service), method: :put, html: { class: 'gl-show-field-errors integration-settings-form js-integration-settings-form', data: { 'test-url' => test_project_service_path(@project, @service) } }) do |form|
      = render 'shared/service_settings', form: form, integration: @service
      %input{ id: 'services_redirect_to', type: 'hidden', name: 'redirect_to', value: request.referrer }

- if lookup_context.template_exists?('show', "projects/services/#{@service.to_param}", true)
  %hr
  = render "projects/services/#{@service.to_param}/show"