Commit 5a6658de by Kálmán Viktor

dashboard: fix vm/template list

If the template/vm was shared via group they weren't shown in "all"
parent 90122b75
......@@ -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