I have time
string which represents a time in ISO8601 format.
The formula to format to a date: {{ time.strftime('%Y-%m-%d') }}
Current output:
time = 2018-01-23T08:11:58.000000
output: 2018-01-23
I want to divide it in 6 hours spans:
time = 2018-01-23T08:11:58.000000
output: 2018-01-23_1 // last "1" represents second span of 6 hours in 24 hours day (6-12)
What I need to add to my formula to achieve this?