[Fixed]-Why can I not get a field's datetime value from queryset?

1👍

You are doing LastVisited.objects.filter, that would give you a queryset. Queryset doesn’t have lastvisited attribute. Do LastVisited.objects.get instead.

Leave a comment