Commit dd87b7e7 by Kálmán Viktor

Merge branch 'issue-270' into 'master'

Template list all doesn't work for regular users

Closes #270
parents 8eea8de7 5a6658de
......@@ -225,7 +225,7 @@ class FilterMixin(object):
cleaned_data = self.search_form.cleaned_data
stype = cleaned_data.get('stype', "all")
superuser = stype == "all"
shared = stype == "shared"
shared = stype == "shared" or stype == "all"
level = "owner" if stype == "owned" else "user"
queryset = model.get_objects_with_level(
level, self.request.user,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment