SystemIndex

This commit is contained in:
RobbieHan
2018-10-17 23:27:14 +08:00
parent 2261bc6b3a
commit 2bba133771
20 changed files with 178 additions and 122 deletions

View File

@@ -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.