[Answered ]-Like button only work when clicked on but cant unlike post object using ajax in Django

1👍

You need to call the .exists() method, so:

if post.like_page_post.filter(id=request.user.id).exists():
    # …

Leave a comment