Added more info to CPU page; removed vendorId call for GPU page; added table to CPU and GPU pages
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2022-08-23 19:13:49 -04:00
parent 4d4c5b2f16
commit 1756478ef7
4 changed files with 34 additions and 5 deletions

View File

@ -15,7 +15,7 @@
<section class="row">
<article class="columns eight">
<h5>CPU Model: <span id="cpuInfo">Random CPU</span></h5>
<table>
<table class="hardware-info">
<tbody>
<tr>
<td>Physical cores</td>

View File

@ -15,9 +15,22 @@
<section class="row">
<h5>GPU Model: <span id="gpuInfo">Random GPU</span></h5>
<p>Vendor: <span id="gpuVendor">N/a</span></p>
<p>GPU Memory: <span id="gpuVram">N/a</span></p>
<p>Bus: <span id="gpuBus">N/a</span></p>
<table class="hardware-info">
<tbody>
<tr>
<td>GPU vendor</td>
<td><span id="gpuVendor">N/a</span></td>
</tr>
<tr>
<td>GPU memory</td>
<td><span id="gpuVram">N/a</span></td>
</tr>
<tr>
<td>Bus</td>
<td><span id="gpuBus">N/a</span></td>
</tr>
</tbody>
</table>
</section>
<section class="row">