views.py 196 B

12345678910
  1. from django.shortcuts import render
  2. def index(request,a,b,c):
  3. try:
  4. a=int(a)
  5. b=int(b)
  6. c=int(c)
  7. except:
  8. pass
  9. return render(request,"show.html",locals())