Each product is only associated with one category, so you can only do

produto.categoria

If you want to iterate over all categories, and then through the products
of each category, you could do

{% for categoria in categorias %}
{% for produto in categoria.produto_set.all %}
do comething with produto
{% endfor %}
{% endfor %}

On Tue, Feb 23, 2016 at 6:58 PM, James Schneider <jrschneide...@gmail.com>
wrote:

> >
> > I try to use
> >>
> >> {% if categorias %}
> >>                             <ul id="flexisel">
> >>                         {% for categoria in produto.categoria_set() %}
>
> At no time can parentheses be used when referencing variables. The correct
> way to write this tag would be {% for categoria in produto.categoria_set %}.
>
>
> Make sure to review the template syntax for accessing context variables
> and methods:
> https://docs.djangoproject.com/en/1.9/ref/templates/language/#variables
>
>
> -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%2BciXoFit4aj1sLmNwwiZ2%3DYg2%2Bz2cp0DuNk-cPxxyn8sikA%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CA%2Be%2BciXoFit4aj1sLmNwwiZ2%3DYg2%2Bz2cp0DuNk-cPxxyn8sikA%40mail.gmail.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/CALn3ei216v2rJedxCuZF3hwx9OFhqVB3hUcww%3D9eXL1%2BvcB42Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to