0.91-bugfixes: Minor improvement to [6468

git-svn-id: http://code.djangoproject.com/svn/django/branches/0.91-bugfixes@6471 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
James Bennett 2007-10-10 15:51:38 +00:00
parent 56c074f565
commit 9cd09e7562
1 changed files with 5 additions and 3 deletions

View File

@ -327,23 +327,25 @@ def get_digit(value, arg):
# DATES #
###################
EMPTY_DATE_VALUES = (None, '')
def date(value, arg=DATE_FORMAT):
"Formats a date according to the given format"
if not value:
if value in EMPTY_DATE_VALUES:
return ''
from django.utils.dateformat import format
return format(value, arg)
def time(value, arg=TIME_FORMAT):
"Formats a time according to the given format"
if not value:
if value in EMPTY_DATE_VALUES:
return ''
from django.utils.dateformat import time_format
return time_format(value, arg)
def timesince(value):
'Formats a date as the time since that date (i.e. "4 days, 6 hours")'
if not value:
if value in EMPTY_DATE_VALUES:
return ''
from django.utils.timesince import timesince
return timesince(value)