AoA, I know the question is silly, but I am stuck here
here is the code...
nq = Notifications.objects.filter(userid__iexact=q)
for string in nq:
string.markType = "Read"
results = Notifications.objects.filter(Q(userid__iexact=q)).order_by('-id')
but the markType failed to set to "Read" ... why?
string.save().