Specifically, I want to have a global setting for the date format string:
Something like:
settings.py
--
DATE_TIME_FORMAT = "M j, F \a\t P"
template
--
{{ comment.date_submitted|date:{{DATE_TIME_FORMAT}}}}
I am guessing that I could write a custom filter that handles this, was
curious if there was another way to do it.
mike