gitlab-org--gitlab-foss/app/views/projects/clusters/index.html.haml
Filipa Lacerda 074fcb56bb
Adds JS unit tests
Finishes tabs & table
Updates e2e tests
2017-11-27 17:28:33 +00:00

20 lines
749 B
Text

- breadcrumb_title "Clusters"
- page_title "Clusters"
.clusters-container
- if @clusters.empty?
= render "empty_state"
- else
= render "tabs"
.ci-table.js-clusters-list
.gl-responsive-table-row.table-row-header{ role: "row" }
.table-section.section-30{ role: "rowheader" }
= s_("ClusterIntegration|Cluster")
.table-section.section-30{ role: "rowheader" }
= s_("ClusterIntegration|Environment pattern")
.table-section.section-30{ role: "rowheader" }
= s_("ClusterIntegration|Project namespace")
.table-section.section-10{ role: "rowheader" }
- @clusters.each do |cluster|
= render "cluster", cluster: cluster
= paginate @clusters, theme: 'gitlab'