Django Doc:
latest(field_name=None)returns the latest object in the table, by date, using the field_name provided as the date field.This example returns the latest Entry in the table, according to the
pub_datefield:Entry.objects.latest('pub_date')