mirror of
https://github.com/coleifer/peewee.git
synced 2026-05-06 07:56:41 -04:00
Fix example/blog time formatting
Just a minor bug found testing your blog example, timestamp was printing `YEAR:HOUR`, fixed it to `HOUR:MIN`
This commit is contained in:
@@ -11,6 +11,6 @@
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<p>Created {{ entry.timestamp.strftime('%m/%d/%Y at %G:%I%p') }}</p>
|
||||
<p>Created {{ entry.timestamp.strftime('%m/%d/%Y at %I:%M%p') }}</p>
|
||||
{{ entry.html_content }}
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user