> [% INCLUDE files.thispage %]
> my $params = {
> files => {thispage => 'thisform.html' thatpage => 'thatform.html'}
> }
> Is this possible or is there some other way to accomplish the same thing?
I believe (untested) you want:
[% INCLUDE ${files.thispage} %]
(THe '$' indicated a variable, the {} showing the scope)
