Storing dates as 2017-08-271210 is great for sorting, but to parse that into human-readable text would be nice. "Sunday" and "12:10".
Probably best implemented as a Jinja text filter, saved in helpers.py and added to the list of filters in app.py, and then added to templates/_table.html and templates/location.html
Storing dates as
2017-08-27
1210
is great for sorting, but to parse that into human-readable text would be nice. "Sunday" and "12:10".Probably best implemented as a Jinja text filter, saved in
helpers.py
and added to the list of filters inapp.py
, and then added totemplates/_table.html
andtemplates/location.html