@property def total_duration_of_videos(self): videos_qs = self.videos.all() total_duration = datetime.timedelta(0,0,0) for video in videos_qs: to