mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
594 B
26 lines
594 B
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from django.views.generic import TemplateView
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from common.mixins import AdminUserRequiredMixin
|
|
from ..models import Label
|
|
|
|
|
|
__all__ = ['TreeView']
|
|
|
|
|
|
class TreeView(AdminUserRequiredMixin, TemplateView):
|
|
template_name = 'assets/tree.html'
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = {
|
|
'app': _('Assets'),
|
|
'action': _('Tree view'),
|
|
'labels': Label.objects.all(),
|
|
}
|
|
kwargs.update(context)
|
|
return super().get_context_data(**kwargs)
|
|
|