Skip to content

Commit

Permalink
24hr time notation
Browse files Browse the repository at this point in the history
  • Loading branch information
antedebaas committed Sep 14, 2023
1 parent 8e43611 commit bb3a13e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/dashboard/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
{% for log in logs %}
<tr>
<th scope="row">{{ log.id }}</th>
<td>{{ log.time|date("d-M-Y h:i:s") }}</td>
<td>{{ log.time|date("d-M-Y H:i:s") }}</td>
<td>{{ log.message }}</td>
</tr>
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion templates/logs/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
{% for log in logs %}
<tr>
<th scope="row">{{ log.id }}</th>
<td>{{ log.time|date("d-M-Y h:i:s") }}</td>
<td>{{ log.time|date("d-M-Y H:i:s") }}</td>
<td>{{ log.message }}</td>
</tr>
{% endfor %}
Expand Down

0 comments on commit bb3a13e

Please sign in to comment.