Commit dc4ee2f0 authored by ibuler's avatar ibuler

[Update] 优化资产

parent bf9a2714
...@@ -78,10 +78,13 @@ class AdminUserDetailView(PermissionsMixin, DetailView): ...@@ -78,10 +78,13 @@ class AdminUserDetailView(PermissionsMixin, DetailView):
permission_classes = [IsOrgAdmin] permission_classes = [IsOrgAdmin]
def get_context_data(self, **kwargs): def get_context_data(self, **kwargs):
from ..utils import NodeUtil
nodes = Node.objects.all()
util = NodeUtil()
context = { context = {
'app': _('Assets'), 'app': _('Assets'),
'action': _('Admin user detail'), 'action': _('Admin user detail'),
'nodes': Node.objects.all() 'nodes': util.get_nodes_by_queryset(queryset=nodes),
} }
kwargs.update(context) kwargs.update(context)
return super().get_context_data(**kwargs) return super().get_context_data(**kwargs)
......
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 to comment