move public lists browser inline
This commit is contained in:
parent
69daaa9003
commit
494941650a
5 changed files with 193 additions and 73 deletions
|
|
@ -85,8 +85,8 @@ def parseCondition(condition):
|
|||
q = Q(itemId=False)
|
||||
l = v.split(".")
|
||||
if len(l) == 2:
|
||||
lqs = List.objects.filter(name=l[1], user__username=l[0])
|
||||
if lqs.count() == 1:
|
||||
lqs = list(List.objects.filter(name=l[1], user__username=l[0]))
|
||||
if len(lqs) == 1:
|
||||
l = lqs[0]
|
||||
if l.query.get('static', False) == False:
|
||||
data = l.query
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue