Dipak
Dipak

Reputation: 443

Django template timesince filter - limit

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

Answers (1)

miku
miku

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

Related Questions