Reputation: 443
Is it possible to limit django timesince filter say to 7 days. If date is more than 7 days, don't apply the filter
Upvotes: 2
Views: 1469
Reputation: 188024
The source for timesince
is located under django/django/utils/timesince.py
. It's short and should require no great effort, to modify it to accept another argument, if some time (e.g. 7 days) is exceeded.
Upvotes: 6