1
2
3
4
5
6
7
8
9
10
11
12
13
14 | def in_objectlist(item, items):
This filter will check if a item exists in a object list like:
[<Tag: personal>, <Tag: twitt>]
values = [slugify(k) for k in items.keys()]
# we should try to detect a specific error here!
|