I have a model in django that consists of these fields:
device = models.CharField(max_length=150, null=True)
time_received = models.TimeField(auto_now_add=True, null=True)
display_time = [ i want it to have same hour as time_received , minute to be started at 00 and then have interval of 5 and finally second to be 00 ]
the reason i want to do this , is to display time in an orderly manner.
for example:
device A is received at 8:01:20 ---> device A is shown as 8:00:00
device A is received at 8:07:22 ---> device A is shown as 8:05:00
one final note: I need to store both display time and received time in postgresql
thanks for helping
Rather than changing the model field, you can add a property method to floor the value, like this: