debian-mirror-gitlab/app/views/projects/clusters/index.html.haml

25 lines
985 B
Text
Raw Normal View History

2018-03-17 18:26:18 +05:30
- breadcrumb_title 'Kubernetes'
- page_title "Kubernetes Clusters"
2018-10-15 14:42:47 +05:30
= render_gcp_signup_offer
2018-03-17 18:26:18 +05:30
.clusters-container
- if @clusters.empty?
= render "empty_state"
- else
.top-area.adjust
.nav-text
= s_("ClusterIntegration|Kubernetes clusters can be used to deploy applications and to provide Review Apps for this project")
.ci-table.js-clusters-list
.gl-responsive-table-row.table-row-header{ role: "row" }
.table-section.section-30{ role: "rowheader" }
= s_("ClusterIntegration|Kubernetes cluster")
.table-section.section-30{ role: "rowheader" }
= s_("ClusterIntegration|Environment scope")
.table-section.section-30{ role: "rowheader" }
= s_("ClusterIntegration|Project namespace")
.table-section.section-10{ role: "rowheader" }
- @clusters.each do |cluster|
= render "cluster", cluster: cluster.present(current_user: current_user)
= paginate @clusters, theme: "gitlab"