Here is the standard inclusion tag:

@register.inclusion_tag('results.html')
def show_results(poll):
...

I'd like to know if is it possible to use an inclusion tag, defining dynamically the template tag. Example:

@register.inclusion_tag('%s.html' % PATH)
def show_results(poll, PATH):
 ...

`

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

No, this isn't possible, because that's not how decorators (or indeed Python functions generally) work. Parameters are evaluated when the module is first imported.

You'd need to write a proper custom tag, without using the inclusion_tag shortcut decorator. This actually isn't all that hard, the documentation shows you how.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.