>>> a=Comment.objects.all()
>>> b=Site.objects.all()
>>> c=[a,b]
>>> c.filter()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'list' object has no attribute 'filter'
>>> a.filter()
[<Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, <Comment: Comment object>, '...(remaining elements truncated)...']
>>> b.filter()
[<Site: Site object>, <Site: Site object>, <Site: Site object>, <Site: Site object>]
Как говорит ошибка, отфильтруйте ваш набор запросов, прежде чем добавить