given a standard model (called Image) with an autoset \'id\', how do I get the max id?
So far I\'ve tried:
max_id = Image.objects.all().aggregate(Max
I know this already has a right answer but here it's another way of doing it:
prev = Image.objects.last()
This gives you the last object.