Apologies, I am completely new to Django and Python.
I have 2 questions. First, how would I go about getting the last object created (or highest pk) in a list of obj
this works!
Model.objects.latest('field') - field can be id. that will be the latest id
Model.objects.latest('field')