Skip to content
Advertisement

how to substract two datetime.time values in django template,and how to format a duration as hour,minutes

In a django app ,I am sending a list of Entry objects to the template.Each Entry object has a start, end times which are datetime.time values(from TimeFields on the form).While listing the Entry objects,I need to show the duration for each entry.Putting a duration field in model seemed to be reduntant since ,start and end times were already there

model

JavaScript

template

JavaScript

1.Is there any filter which can take two datetime.time values and calculate the duration in seconds. ie,

JavaScript

2.Also,is there a filter,that can show a duration in given number of minutes as hour,minutes if the minutes value is greater than 60

ie,

JavaScript

update

JavaScript

when i tried with some sample time values ,it gave me the expected result

JavaScript

Advertisement

Answer

I don’t see where is the problem, apart in case the end-time would be later than 24 hours after the start-time.

Suppose that start-time is 9:00:00 and end-time is 13:00:00
If these times were taken on August 15, 9:00:00 and August 17, 13:00:00 , there would be no sense to try to obtain the time delta between them without knowing the days 15 and 17.

Hence there are two cases:

  • either the start time and end time may be really separated by more than 24 hours , then as it has already been said, you must move to the use of datetime’s objects

  • either there is always less than 24 hours between the start-time and the end-time, then the problem is simple.

==========================

Let us examine the second case.

If
start-time 11:30:00
end-time.. 12:35:00
The end is evidently 1 hour 5 minutes after the start

If
start-time 11:30:00
end-time.. 10:35:00
The end can’t be before the start in the same morning, then the end is in fact in the morning of the next day after the day in which is the start, that is to say 24 hours later.

The same reasoning applies when the start is in the afternoon and the end time is apparently before the start time in the same day, in afternoon or morning: end time is in fact in the the next day, morning or afternoon, it depends but it’s still 24 hours later.

1)

So a little function, that need only the attributes of the times is sufficient to deduct the time difference:

JavaScript

The following code is only for a better display of the result:

from datetime import time

JavaScript

result

JavaScript

2)

To obtain the durations in a more readable format:

JavaScript

result

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement