Unfortunately that doesn't work. This works:

 {{ include dir|concat:"/tag.html" }}

But not this:

 {% include dir|concat:"/tag.html" %}

Thanks, but I'm still searching for a solution...

2B

On May 29, 11:18 pm, Johannes Dollinger
<[EMAIL PROTECTED]> wrote:
> You could use a filter:
>
> @register.filter(name='concat')
> def concat(value, arg):
>         return "%s%s" % (value, arg)
>
> and then {% include dir|concat:"/tag.html" %}.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to