Changing database schema a bit

This commit is contained in:
Gregory Ballantine
2024-06-08 09:47:48 -04:00
parent 584a6087ba
commit 7375c1ce39
6 changed files with 13 additions and 9 deletions

View File

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