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
For the largest primary key, try this:
List.objects.order_by('-pk')[0]
Note that using pk works regardless of the actual name of the field defined as your primary key.
pk