Thanks heaps works perfectly well.
CheersOn Fri, Jan 29, 2016 at 4:09 PM, <aspellip@gmail.com> wrote:
from django.http import HttpResponse--
from django.template import loader, RequestContext
def foreginexchange_view(request):
t = loader.get_template("template.html")
test=ball.objects.filter(request="checked").count()
c = RequestContext(request, {'test': test})
return HttpResponse(t.render(c))
On Wednesday, January 27, 2016 at 11:12:19 PM UTC+2, suabiut wrote:Version 1.7On Wed, Jan 27, 2016 at 10:42 PM, <aspe...@gmail.com> wrote:To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/a95743cd-8d68-4f92-91c9-c49ca7dfc329%40googlegroups.com.Which version of Django do you using?--
вторник, 26 января 2016 г., 23:14:03 UTC+2 пользователь suabiut написал:When i did that i got the error:
'dict' object has no attribute 'render_context'On Tue, Jan 26, 2016 at 7:25 PM, <aspe...@gmail.com> wrote:To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/24038981-7076-4287-9a8d-31e3d83ab7d0%40googlegroups.com.Try this--
def foreginexchange_view(request):
t = loader.get_template("template.html")
test=ball.objects.filter(request="checked").count()
return HttpResponse(t.render({'test': test}))
On Tuesday, January 26, 2016 at 4:45:52 AM UTC+2, suabiut wrote:CheersThanks James,here is my view.py
def foreginexchange_view(request):
test=ball.objects.filter(request="checked").count()
return render(request,'template.html',locals())On Tue, Jan 26, 2016 at 1:30 PM, James Schneider <jrschn...@gmail.com> wrote:
On Jan 25, 2016 6:07 PM, "sum abiut" <sua...@gmail.com> wrote:
>
> Hi,
> i am trying to count the number of fields that has request field begin checked and then display the value of count in a template.html but i am not sure how to go about doing that.
>
> For example i want to do something like
>
> test=ball.object.filter(request="checked").count()
>
> then on a template.html i want to out put the value of test
>
> {{test}}
>
> i have try that but i am not getting any value from the output.
>Can you post your view? You would run that query in your view and then pass it to your template through the context.
-James
--
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/CA%2Be%2BciUgThuMtZvUj3QHxLKFHiRu67oTZuvfoLT3K9EpNt08Dg%40mail.gmail.com.
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...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
-
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.
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.
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/6289955a-5a10-403a-a3c7-1c938c333185%40googlegroups.com.
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.
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/CAPCf-y7BonRz2ixMOiQX5DtVjbO8O4qWa6dXAf88%2B3db-9ZRww%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment