5 lines
109 B
Python
5 lines
109 B
Python
import iso8601
|
|
|
|
|
|
def format_datetime(value):
|
|
return iso8601.parse_date(str(value)).strftime("%x %-H:%M")
|