Modified some styles; more bootstrap 5 changes; added logo

This commit is contained in:
2025-08-18 00:11:36 -04:00
parent 03dab84224
commit c00d631e9f
16 changed files with 250 additions and 152 deletions

View File

@@ -7,25 +7,27 @@
<h2>Hardware</h2>
<a href="/hardware/add">Add new hardware</a>
<table class="twelve columns">
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td>Created at</td>
<td>Last updated</td>
</tr>
</thead>
<tbody>
{% for h in hardware %}
<div class="col-12">
<table class="table table-responsive table-hover">
<thead>
<tr>
<td><a href="/hardware/{{ h.id }}">{{ h.name }}</a></td>
<td>{{ h.type }}</td>
<td>{{ p.createdAt | date('m/d/Y g:ia') }}</td>
<td>{{ p.updatedAt | date('m/d/Y g:ia') }}</td>
<td>Name</td>
<td>Type</td>
<td>Created at</td>
<td>Last updated</td>
</tr>
{% endfor %}
</tbody>
</table>
</thead>
<tbody>
{% for h in hardware %}
<tr>
<td><a href="/hardware/{{ h.id }}">{{ h.name }}</a></td>
<td>{{ h.type }}</td>
<td>{{ p.createdAt | date('m/d/Y g:ia') }}</td>
<td>{{ p.updatedAt | date('m/d/Y g:ia') }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endblock %}