views.py 315 B

12345678910111213
  1. from django.shortcuts import render
  2. from django.shortcuts import HttpResponse
  3. # Create your views here.
  4. def contact(request):
  5. html = '<html><body>欢迎咨询</body></html>'
  6. return HttpResponse(html)
  7. def recruit(request):
  8. html = '<html><body>加入恒达</body></html>'
  9. return HttpResponse(html)