Sentry/assets/twig/index.twig

40 lines
730 B
Twig
Raw Normal View History

2022-05-25 14:28:19 -04:00
{% 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>
2022-05-25 14:43:54 -04:00
<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>
2022-05-25 14:28:19 -04:00
{% endblock %}