Re: HELP - Django variable in style (width) attribute

2016-10-20 Thread Aline C. R. Souza
Thank you both, Constantine and James. Thanks to your comments I could 
realize where the error was, and I could improvve performance assigning the 
returned value to a variable.

The error was in html, and not django. When I looked at the rendered html, 
I could see the error.

Em sábado, 15 de outubro de 2016 22:28:38 UTC-3, Aline C. R. Souza escreveu:
>
> Hello Guys,
>
> favorite 
> 
>
> Why the template tag call {% get_percentage question.pk choice.pk %} 
> works inside the span tag, but doesn't work in style (width) attribute?
>
> What is wrong?
>
>  {% for choice in question.choice_set.all %}
> {{ choice.choice_text }}
> {% get_percentage question.pk choice.pk 
> %}%
> 
> 
> 
>  {% endfor %}
>
> I am using Python 3.5.2 and Django 1.10.2
>
> PS: I did the same question on StackOverflow: 
> http://stackoverflow.com/q/40065604/5498125, but I have no answers yet.
>

-- 
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/3dd650d0-1646-4c12-8387-5e90b8d0e4ab%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: HELP - Django variable in style (width) attribute

2016-10-15 Thread Constantine Covtushenko
Hi Aline,

It is not direct answer for what you are asking,
but why do you calculate the percentage 2 times?

Why just use `with
` tag?

With it nor problem at all.

Hope that helps.

Regards,
Constantine C.

On Sun, Oct 16, 2016 at 5:53 AM, James Schneider 
wrote:

>
> > Why the template tag call {% get_percentage question.pk choice.pk %}
> works inside the span tag, but doesn't work in style (width) attribute?
> >
> > What is wrong?
> >
>
> No idea. You haven't provided what your template tag does, or what the
> rendered template looks like.
>
> What does the final HTML look like?
>
> -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+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/CA%2Be%2BciV9%2Bp79D4Gkst8khnhmDVt3nUOrA2C6-
> uWXgmVi8p-rDw%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+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/CAK52boXdjG1_YJuYcQj-iRNsXezKhCOSrHA6_y5AmOmwZ7Uhbg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: HELP - Django variable in style (width) attribute

2016-10-15 Thread James Schneider
> Why the template tag call {% get_percentage question.pk choice.pk %}
works inside the span tag, but doesn't work in style (width) attribute?
>
> What is wrong?
>

No idea. You haven't provided what your template tag does, or what the
rendered template looks like.

What does the final HTML look like?

-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+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/CA%2Be%2BciV9%2Bp79D4Gkst8khnhmDVt3nUOrA2C6-uWXgmVi8p-rDw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.