1👍
✅
# views.py
User_likes_ids = UserLikes.objects.filter(user=request.user).values_list('post_id', flat=True)
posts = Post.objects.all()
# template.html
{% for post in posts %}
{% if post.id in user_likes_ids %}you like this - unlike{% else %}like{% endif %}
{% endfor %}
Source:stackexchange.com