The follwoing unexpectedly fail: is it my shallow understanding of the
template 'language' ?
[% INCLUDE 'answers/create/' _ class %]
Thought that would concatinate a literal string
and the value of the scalar named class
[% INCLUDE path %]
Thought that would operate on the value in
the variable named path.
This works:
[% path = 'answer/create/' _ class; INCLUDE $path %]
Sorry for the shallow ticket.