Tagged Questions
2
votes
2answers
1k views
how do i filter an itertools chain() result?
in my views,
if i import an itertools module:
from itertools import chain
and i chain some objects with it:
franktags = Frank.objects.order_by('date_added').reverse().filter(topic__exact='art')
...