views.py 449 B

123456789101112131415161718192021
  1. from django.shortcuts import render
  2. from hrs.models import Dept, Emp
  3. def index(request):
  4. ctx = {
  5. 'greeting': '你好,世界!'
  6. }
  7. return render(request, 'index.html', context=ctx)
  8. def emps(request):
  9. dno = int(request.GET['dno'])
  10. def depts(request):
  11. # DRY - Don't Repeat Yourself
  12. # ORM - Object Relation Mapping
  13. ctx = {'dept_list': Dept.objects.all()}
  14. return render(request, 'dept.html', context=ctx)