mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-04-30 05:39:48 +08:00
SystemIndex
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
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')
|
||||
|
||||
# Create your views here.
|
||||
|
||||
Reference in New Issue
Block a user