Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_form.html.haml « integrations « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11e390a47e2949788756e89ee4793fe4eda52ee4 (plain)
1
2
3
4
5
6
7
8
9
10
- integration = local_assigns.fetch(:integration)

.row.gl-mt-3
  .col-lg-4
    %h3.page-title.gl-mt-0
      = integration.title

  .col-lg-8
    = form_for integration, as: :service, url: scoped_integration_path(integration), method: :put, html: { class: 'gl-show-field-errors integration-settings-form js-integration-settings-form', data: { 'test-url' => scoped_test_integration_path(integration) } } do |form|
      = render 'shared/service_settings', form: form, integration: integration