11 lines
241 B
Python
11 lines
241 B
Python
# _*_ coding:utf-8 _*_
|
|
from django.shortcuts import render
|
|
from django.views.generic import View
|
|
# Create your views here.
|
|
|
|
|
|
class Index(View):
|
|
"""首页显示"""
|
|
def get(self,request):
|
|
|
|
return render(request,'index.html',{}) |