# models.py def total_amount_spent(self): temp_values = [int(user.amount_spent) for user in ExtendedProfile.objects.all()] return sum(temp_values)