Ordered result and test searches by last updated date

This commit is contained in:
2022-11-25 21:30:56 -05:00
parent 005b31dbd7
commit 950b12ee10
4 changed files with 6 additions and 2 deletions

View File

@ -14,6 +14,7 @@
<th>Avg.</th>
<th>Min.</th>
<th>Max.</th>
<th>Last updated</th>
</tr>
</thead>
<tbody>
@ -25,6 +26,7 @@
<td>{{ r.average }}</td>
<td>{{ r.minimum ? r.minimum : 'N/a' }}</td>
<td>{{ r.maximum ? r.maximum : 'N/a' }}</td>
<td>{{ r.updated_at | date("F jS \\a\\t g:ia") }}</td>
</tr>
{% endfor %}
</tbody>