Skip to content

Commit 524386e

Browse files
committed
Correct date > time filter in template
1 parent 630d96e commit 524386e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hello/templates/hello/home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h2>Logged messages</h2>
1818
{% for message in message_list %}
1919
<tr>
2020
<td>{{ message.log_date | date:'d M Y' }}</td>
21-
<td>{{ message.log_date | date:'H:i:s' }}</td>
21+
<td>{{ message.log_date | time:'H:i:s' }}</td>
2222
<td>
2323
{{ message.message }}
2424
</td>

0 commit comments

Comments
 (0)