crates/server: update templates with improved dashboard and styling
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I07f9de61588f61aae003f78c30fd6d326a6a6964
This commit is contained in:
parent
92153bf9aa
commit
b4d3c9d501
14 changed files with 1139 additions and 609 deletions
|
|
@ -55,8 +55,9 @@
|
|||
|
||||
<h2>Build Steps</h2>
|
||||
{% if steps.is_empty() %}
|
||||
<p class="empty">No steps recorded.</p>
|
||||
<div class="empty">No steps recorded.</div>
|
||||
{% else %}
|
||||
<div class="table-wrap">
|
||||
<table>
|
||||
<thead>
|
||||
<tr><th>#</th><th>Command</th><th>Exit</th><th>Started</th><th>Completed</th></tr>
|
||||
|
|
@ -73,12 +74,14 @@
|
|||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<h2>Build Products</h2>
|
||||
{% if products.is_empty() %}
|
||||
<p class="empty">No products recorded.</p>
|
||||
<div class="empty">No products recorded.</div>
|
||||
{% else %}
|
||||
<div class="table-wrap">
|
||||
<table>
|
||||
<thead>
|
||||
<tr><th>Name</th><th>Path</th><th>Size</th></tr>
|
||||
|
|
@ -93,5 +96,6 @@
|
|||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue