1👍
✅
Update returns a number of records updated by a query. (not exactly updated, but matched a filter clause – more info)
You may just query records once again after update..
Loaded.objects.filter(lap=id).update(release_time=initial_time)
load = Loaded.objects.filter(lap=id).all()
Source:stackexchange.com