mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-03 19:03:15 +08:00
10 lines
239 B
Python
10 lines
239 B
Python
from django.views.generic import TemplateView
|
|
|
|
from system.mixin import LoginRequiredMixin
|
|
from custom import BreadcrumbMixin
|
|
|
|
|
|
class CmdbView(LoginRequiredMixin, BreadcrumbMixin, TemplateView):
|
|
|
|
template_name = 'cmdb/cmdb_index.html'
|