Updated the formatting of the recently updated tests table on the dashboard

This commit is contained in:
Gregory Ballantine 2025-06-23 18:58:36 -04:00
parent f43f27ec1a
commit f80571ba78

View File

@ -10,13 +10,15 @@
<tr>
<td>Title</td>
<td>Last updated</td>
<td>Created at</td>
</tr>
</thead>
<tbody>
{% for t in tests %}
<tr>
<td><a href="/test/{{ t.id }}">{{ t.getHardware().name }} {{ t.dateTag }}</a></td>
<td><a href="/test/{{ t.id }}">{{ t.title }}</a></td>
<td>{{ t.updatedAt | date('m/d/Y g:ia') }}</td>
<td>{{ t.createdAt | date('m/d/Y g:ia') }}</td>
</tr>
{% endfor %}
</tbody>