mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-03 19:03:15 +08:00
11 lines
240 B
Python
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'
|
|
|