On 1/21/06, imbunche <[EMAIL PROTECTED]> wrote:
> The custom filter and the custom tag mentioned above work fine by
> themselves, it also works if I use any standard filter like upper or
> lower but if I use:
>
> {% imgpath {{myimg | thumb}} %}

The syntax is slightly off in that example. You'll want to do this:

    {% imgpath myimg|thumb %}

Note that you can't embed variable tags ( {{ example }} ) within block
tags ( {% example %} ) and vice versa.

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com | chicagocrime.org

Reply via email to