[Fixed]-Notifications system has issues

1👍

Have you tried something like this in your views.py?

notifi = Notificaciones.objects.filter(user=request.user.id, Estado=False)

EDIT:

Maybe this previous post can be helpful for you.
django: Purpose of django.utils.functional.SimpleLazyObject?

Or look what I found, this could be also helpful:
Django int() argument must be a string or a number

Hope this helps. 🙂

Leave a comment