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):
...
`