crates/server: update templates with improved dashboard and styling

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I07f9de61588f61aae003f78c30fd6d326a6a6964
This commit is contained in:
raf 2026-02-02 01:27:05 +03:00
commit b4d3c9d501
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
14 changed files with 1139 additions and 609 deletions

View file

@ -40,8 +40,9 @@
<h2>Builds</h2>
{% if builds.is_empty() %}
<p class="empty">No builds for this evaluation.</p>
<div class="empty">No builds for this evaluation.</div>
{% else %}
<div class="table-wrap">
<table>
<thead>
<tr><th>Job</th><th>Status</th><th>System</th><th>Created</th></tr>
@ -57,5 +58,6 @@
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
{% endblock %}