views.py 422 B

123456789101112131415161718
  1. from django.shortcuts import render
  2. from django.shortcuts import HttpResponse
  3. # Create your views here.
  4. def company(request):
  5. html = '<html><body>公司要闻</body></html>'
  6. return HttpResponse(html)
  7. def industry(request):
  8. html = '<html><body>行业新闻</body></html>'
  9. return HttpResponse(html)
  10. def notice(request):
  11. html = '<html><body>通知公告</body></html>'
  12. return HttpResponse(html)