GOSTCoin Web Wallet
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

10 lines
235 B

from django import template
register = template.Library()
@register.filter
def timestamp_to_time(timestamp):
"""Converts a timestamp into datetime obj"""
import datetime
return datetime.datetime.fromtimestamp(timestamp)