summaryrefslogtreecommitdiff
path: root/src/views/HardwareStatus/Inventory/Inventory.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/HardwareStatus/Inventory/Inventory.vue')
-rw-r--r--src/views/HardwareStatus/Inventory/Inventory.vue73
1 files changed, 37 insertions, 36 deletions
diff --git a/src/views/HardwareStatus/Inventory/Inventory.vue b/src/views/HardwareStatus/Inventory/Inventory.vue
index fcdbf8d2..1fbbe81f 100644
--- a/src/views/HardwareStatus/Inventory/Inventory.vue
+++ b/src/views/HardwareStatus/Inventory/Inventory.vue
@@ -1,50 +1,51 @@
<template>
- <b-container fluid="xl">
+ <b-container fluid="xxl pt-0 m-2">
<page-title />
+ <div class="main-container">
+ <!-- Service indicators -->
+ <service-indicator />
- <!-- Service indicators -->
- <service-indicator />
+ <!-- Quicklinks section -->
+ <page-section :section-title="$t('pageInventory.quicklinkTitle')">
+ <b-row class="w-75">
+ <b-col v-for="column in quicklinkColumns" :key="column.id" xl="4">
+ <div v-for="item in column" :key="item.id">
+ <b-link
+ :href="item.href"
+ :data-ref="item.dataRef"
+ @click.prevent="scrollToOffset"
+ >
+ <jump-link /> {{ item.linkText }}
+ </b-link>
+ </div>
+ </b-col>
+ </b-row>
+ </page-section>
- <!-- Quicklinks section -->
- <page-section :section-title="$t('pageInventory.quicklinkTitle')">
- <b-row class="w-75">
- <b-col v-for="column in quicklinkColumns" :key="column.id" xl="4">
- <div v-for="item in column" :key="item.id">
- <b-link
- :href="item.href"
- :data-ref="item.dataRef"
- @click.prevent="scrollToOffset"
- >
- <jump-link /> {{ item.linkText }}
- </b-link>
- </div>
- </b-col>
- </b-row>
- </page-section>
+ <!-- System table -->
+ <table-system ref="system" />
- <!-- System table -->
- <table-system ref="system" />
+ <!-- BMC manager table -->
+ <table-bmc-manager ref="bmc" />
- <!-- BMC manager table -->
- <table-bmc-manager ref="bmc" />
+ <!-- Chassis table -->
+ <table-chassis ref="chassis" />
- <!-- Chassis table -->
- <table-chassis ref="chassis" />
+ <!-- DIMM slot table -->
+ <table-dimm-slot ref="dimms" />
- <!-- DIMM slot table -->
- <table-dimm-slot ref="dimms" />
+ <!-- Fans table -->
+ <table-fans ref="fans" />
- <!-- Fans table -->
- <table-fans ref="fans" />
+ <!-- Power supplies table -->
+ <table-power-supplies ref="powerSupply" />
- <!-- Power supplies table -->
- <table-power-supplies ref="powerSupply" />
+ <!-- Processors table -->
+ <table-processors ref="processors" />
- <!-- Processors table -->
- <table-processors ref="processors" />
-
- <!-- Assembly table -->
- <table-assembly ref="assembly" />
+ <!-- Assembly table -->
+ <table-assembly ref="assembly" />
+ </div>
</b-container>
</template>