6-315/blog/home/views.py

10 lines
253 B
Python

from django.shortcuts import render
from django.views import View
class IndexView(View):
"""首页广告"""
def get(self, request):
"""提供首页广告界面"""
return render(request, 'index.html')
# Create your views here.