views.py 330 B

12345678910111213
  1. from django.shortcuts import render
  2. from django.shortcuts import HttpResponse
  3. # Create your views here.
  4. def download(request):
  5. html = '<html><body>资料下载</body></html>'
  6. return HttpResponse(html)
  7. def platform(request):
  8. html = '<html><body>人脸识别开放平台</body></html>'
  9. return HttpResponse(html)