[Answer]-Django: How to display an older version of a queryset in template that has been modified in views.py?

1👍

Cache the queryset in a list before marking the messages as read:

newmessages = list(Notification.objects.filter(recipient=User, unread=True))

Leave a comment