Created
August 4, 2011 03:13
-
-
Save anandnalya/1124424 to your computer and use it in GitHub Desktop.
Humanizing the time difference ( in django )
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django import template | |
register = template.Library() | |
MOMENT = 120 # duration in seconds within which the time difference | |
# will be rendered as 'a moment ago' | |
@register.filter | |
def naturalTimeDifference(value): | |
""" | |
Finds the difference between the datetime value given and now() | |
and returns appropriate humanize form | |
""" | |
from datetime import datetime | |
if isinstance(value, datetime): | |
delta = datetime.now() - value | |
if delta.days > 6: | |
return value.strftime("%b %d") # May 15 | |
if delta.days > 1: | |
return value.strftime("%A") # Wednesday | |
elif delta.days == 1: | |
return 'yesterday' # yesterday | |
elif delta.seconds > 3600: | |
return str(delta.seconds / 3600 ) + ' hours ago' # 3 hours ago | |
elif delta.seconds > MOMENT: | |
return str(delta.seconds/60) + ' minutes ago' # 29 minutes ago | |
else: | |
return 'a moment ago' # a moment ago | |
return defaultfilters.date(value) | |
else: | |
return str(value) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment