Files
sandboxMP/apps/system/views.py
2018-11-16 23:03:09 +08:00

11 lines
240 B
Python

from django.views.generic import TemplateView
from .mixin import LoginRequiredMixin
from custom import BreadcrumbMixin
class SystemView(LoginRequiredMixin, BreadcrumbMixin, TemplateView):
template_name = 'system/system_index.html'