mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-03 10:53:15 +08:00
12 lines
253 B
Python
12 lines
253 B
Python
from django.shortcuts import render
|
|
from django.views.generic.base import View
|
|
|
|
from .mixin import LoginRequiredMixin
|
|
|
|
|
|
class SystemView(LoginRequiredMixin, View):
|
|
|
|
def get(self, request):
|
|
return render(request, 'system/system_index.html')
|
|
|