diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-07-18 18:08:47 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-07-18 18:08:47 +0000 |
commit | 128d4d89e98177996d1ff6e0b3d7a8a0c9b35929 (patch) | |
tree | 88b02d3bf972bac281d673e99f854303e0dd13ed /app/views/projects/google_cloud | |
parent | cc1066db64a2a283a3d229b9bbb67c01716ca871 (diff) | |
download | gitlab-ce-128d4d89e98177996d1ff6e0b3d7a8a0c9b35929.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/views/projects/google_cloud')
8 files changed, 27 insertions, 24 deletions
diff --git a/app/views/projects/google_cloud/configuration/index.html.haml b/app/views/projects/google_cloud/configuration/index.html.haml new file mode 100644 index 00000000000..ec977898f47 --- /dev/null +++ b/app/views/projects/google_cloud/configuration/index.html.haml @@ -0,0 +1,7 @@ +- add_to_breadcrumbs _('Google Cloud'), @google_cloud_path +- breadcrumb_title s_('CloudSeed|Configuration') +- page_title s_('CloudSeed|Configuration') + +- @content_class = "limit-container-width" unless fluid_layout + +#js-google-cloud-configuration{ data: @js_data } diff --git a/app/views/projects/google_cloud/databases/index.html.haml b/app/views/projects/google_cloud/databases/index.html.haml new file mode 100644 index 00000000000..ad732317d8d --- /dev/null +++ b/app/views/projects/google_cloud/databases/index.html.haml @@ -0,0 +1,7 @@ +- add_to_breadcrumbs _('Google Cloud'), @google_cloud_path +- breadcrumb_title s_('CloudSeed|Databases') +- page_title s_('CloudSeed|Databases') + +- @content_class = "limit-container-width" unless fluid_layout + +#js-google-cloud-databases{ data: @js_data } diff --git a/app/views/projects/google_cloud/deployments/index.html.haml b/app/views/projects/google_cloud/deployments/index.html.haml new file mode 100644 index 00000000000..b140159a7f5 --- /dev/null +++ b/app/views/projects/google_cloud/deployments/index.html.haml @@ -0,0 +1,7 @@ +- add_to_breadcrumbs _('Google Cloud'), @google_cloud_path +- breadcrumb_title s_('CloudSeed|Deployments') +- page_title s_('CloudSeed|Deployments') + +- @content_class = "limit-container-width" unless fluid_layout + +#js-google-cloud-deployments{ data: @js_data } diff --git a/app/views/projects/google_cloud/errors/gcp_error.html.haml b/app/views/projects/google_cloud/errors/gcp_error.html.haml deleted file mode 100644 index 69e481501d5..00000000000 --- a/app/views/projects/google_cloud/errors/gcp_error.html.haml +++ /dev/null @@ -1,6 +0,0 @@ -- breadcrumb_title _('Google Cloud') -- page_title _('Google Cloud') - -- @content_class = "limit-container-width" unless fluid_layout - -#js-google-cloud{ data: @js_data } diff --git a/app/views/projects/google_cloud/errors/no_gcp_projects.html.haml b/app/views/projects/google_cloud/errors/no_gcp_projects.html.haml deleted file mode 100644 index 69e481501d5..00000000000 --- a/app/views/projects/google_cloud/errors/no_gcp_projects.html.haml +++ /dev/null @@ -1,6 +0,0 @@ -- breadcrumb_title _('Google Cloud') -- page_title _('Google Cloud') - -- @content_class = "limit-container-width" unless fluid_layout - -#js-google-cloud{ data: @js_data } diff --git a/app/views/projects/google_cloud/gcp_regions/index.html.haml b/app/views/projects/google_cloud/gcp_regions/index.html.haml index 3a6f8ca059d..d7cabaa029b 100644 --- a/app/views/projects/google_cloud/gcp_regions/index.html.haml +++ b/app/views/projects/google_cloud/gcp_regions/index.html.haml @@ -1,8 +1,8 @@ - add_to_breadcrumbs _('Google Cloud'), @google_cloud_path -- breadcrumb_title _('Regions') -- page_title _('Regions') +- breadcrumb_title _('CloudSeed|Regions') +- page_title s_('CloudSeed|Regions') - @content_class = "limit-container-width" unless fluid_layout = form_tag project_google_cloud_gcp_regions_path(@project), method: 'post' do - #js-google-cloud{ data: @js_data } + #js-google-cloud-gcp-regions{ data: @js_data } diff --git a/app/views/projects/google_cloud/index.html.haml b/app/views/projects/google_cloud/index.html.haml deleted file mode 100644 index 69e481501d5..00000000000 --- a/app/views/projects/google_cloud/index.html.haml +++ /dev/null @@ -1,6 +0,0 @@ -- breadcrumb_title _('Google Cloud') -- page_title _('Google Cloud') - -- @content_class = "limit-container-width" unless fluid_layout - -#js-google-cloud{ data: @js_data } diff --git a/app/views/projects/google_cloud/service_accounts/index.html.haml b/app/views/projects/google_cloud/service_accounts/index.html.haml index 9b82bc0acb5..6191de577fe 100644 --- a/app/views/projects/google_cloud/service_accounts/index.html.haml +++ b/app/views/projects/google_cloud/service_accounts/index.html.haml @@ -1,8 +1,8 @@ - add_to_breadcrumbs _('Google Cloud'), @google_cloud_path -- breadcrumb_title _('Service Account') -- page_title _('Service Account') +- breadcrumb_title s_('CloudSeed|Service Account') +- page_title s_('CloudSeed|Service Account') - @content_class = "limit-container-width" unless fluid_layout = form_tag project_google_cloud_service_accounts_path(@project), method: 'post' do - #js-google-cloud{ data: @js_data } + #js-google-cloud-service-accounts{ data: @js_data } |