Dapatkan Model Django Simpan ID Terakhir

latest_id = models.objects.latest('id').id
# check last id then do something with that then.
latest_id = Entry.objects.latest('id')

# source
https://docs.djangoproject.com/en/3.2/ref/models/querysets/#latest
bilalahmed_dev