def base(request):
j=Job.objects.all()
a=Ab.objects.all()
return render(request,'base.html',{'j':j, 'a':a})
def index(request):
base(request)
x=X.objects.all()
return render(request, 'index.html',{'x':x})
def list(request):
base(request)
z=Z.objects.all()
return render(request, 'list.html',{'z':z})
Just like this. Unless you have a specific use case you forgot to share in your mail.
Views are mere functions that get called with a request az a parameter. You shouldn’t treat them as special/holy/uncallable.
Best,
Gergely
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/3cc2651c-35df-4eaf-bab6-b1ae936f73d4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Just like this. Unless you have a specific use case you forgot to share in your mail.
Views are mere functions that get called with a request az a parameter. You shouldn’t treat them as special/holy/uncallable.
Best,
Gergely
On Jun 15, 2016 19:56, "hossein" <k.saz...@gmail.com> wrote:
--def base(request):
j=Job.objects.all()
a=Ab.objects.all()
return render(request,'base.html',{'j':j, 'a':a})
def index(request):
base(request)
x=X.objects.all()
return render(request, 'index.html',{'x':x})
def list(request):
base(request)
z=Z.objects.all()
return render(request, 'list.html',{'z':z})
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.