templatetags: limit start timestamp to minutes (#29327)

This commit is contained in:
Frédéric Péters 2018-12-22 18:30:26 +01:00
parent d8019fa7d0
commit f4952b6b90
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def xstatic(modname, filename):
return settings.STATIC_URL + 'xstatic/' + filename
START_TIMESTAMP = time.strftime('%Y%m%d.%H%M%S')
START_TIMESTAMP = time.strftime('%Y%m%d.%H%M')
@register.simple_tag
def start_timestamp():