More Explain Please

On Thursday, June 16, 2016 at 3:13:38 AM UTC+4:30, Gergely Polonkai wrote:
>
> 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.sazand...@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+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@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
>>  
>> <https://groups.google.com/d/msgid/django-users/3cc2651c-35df-4eaf-bab6-b1ae936f73d4%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@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/72d16e93-10b7-4465-b116-68bf054a89d4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to