Sentry/assets/twig/index.twig
Gregory Ballantine 056a5ad2a6
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Added some basic system info gathering
2022-05-25 14:43:54 -04:00

40 lines
730 B
Twig

{% extends 'layout.twig' %}
{% block scripts %}
<script src="./js/index.js" charset="utf-8"></script>
{% endblock %}
{% block content %}
<header class="row">
<div class="columns twelve u-text-center">
<h1>Sentry System Info</h1>
</div>
</header>
<section class="row">
<table class="columns twelve">
<thead>
<tr>
<th>HW Type</th>
<th>Hardware Model Info.</th>
<th>Current Temp.</th>
</tr>
</thead>
<tbody>
<tr>
<td>CPU</td>
<td id="cpuInfo"></td>
<td id="cpuTemp"></td>
</tr>
<tr>
<td>GPU</td>
<td id="gpuInfo"></td>
<td id="gpuTemp"></td>
</tr>
</tbody>
</table>
</section>
{% endblock %}