I am building my first Django program from scratch and am running into troubles trying to print out items to the screen from newest to oldest. My model has an auto date time fie
By the way you also have Django's created_at field at your disposal:
created_at
ordered_tasks = TaskItem.objects.order_by('-created_at')