Commit 564942ea authored by James Fargher's avatar James Fargher

Renamed group-level views to be generic

parent b817db64
...@@ -42,6 +42,6 @@ ...@@ -42,6 +42,6 @@
= render 'banner' = render 'banner'
- if cluster_environments_path.present? - if cluster_environments_path.present?
= render_if_exists 'clusters/clusters/group_cluster_environments', expanded: expanded = render_if_exists 'clusters/clusters/cluster_environments', expanded: expanded
- else - else
= render 'configure', expanded: expanded = render 'configure', expanded: expanded
...@@ -6,18 +6,18 @@ ...@@ -6,18 +6,18 @@
.js-toggle-container .js-toggle-container
%ul.nav-links.mobile-separator.nav.nav-tabs{ role: 'tablist' } %ul.nav-links.mobile-separator.nav.nav-tabs{ role: 'tablist' }
%li.nav-item{ role: 'presentation' } %li.nav-item{ role: 'presentation' }
%a.nav-link{ class: active_when(is_configure_active), href: clusterable.cluster_path(@cluster.id, params: {tab: 'configure'}), id: 'group-cluster-configure-tab' } %a.nav-link{ class: active_when(is_configure_active), href: clusterable.cluster_path(@cluster.id, params: {tab: 'configure'}), id: 'cluster-configure-tab' }
%span= _('Configuration') %span= _('Configuration')
%li.nav-item{ role: 'presentation' } %li.nav-item{ role: 'presentation' }
%a.nav-link{ class: active_when(!is_configure_active), href: clusterable.cluster_path(@cluster.id, params: {tab: 'environments'}), id: 'group-cluster-environments-tab' } %a.nav-link{ class: active_when(!is_configure_active), href: clusterable.cluster_path(@cluster.id, params: {tab: 'environments'}), id: 'cluster-environments-tab' }
%span.js-cluster-nav-environments= _('Environments') %span.js-cluster-nav-environments= _('Environments')
.tab-content .tab-content
- if is_configure_active - if is_configure_active
.tab-pane.active{ id: 'group-cluster-configure-pane', role: 'tabpanel' } .tab-pane.active{ id: 'cluster-configure-pane', role: 'tabpanel' }
= render 'configure', expanded: expanded = render 'configure', expanded: expanded
- else - else
.tab-pane.active{ id: 'group-cluster-environments-pane', role: 'tabpanel' } .tab-pane.active{ id: 'cluster-environments-pane', role: 'tabpanel' }
#js-cluster-environments #js-cluster-environments
- else - else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment