I\'m building a news website.While I tried to get the list of relative news which have the same tags.The error said:The QuerySet value for an exact lookup must be li
I also experienced the same issue, try doing this, instead of:
relative_news = News.objects.filter(tag=tags)
to
relative_news = News.objects.filter(tag=tags).first()