> my %globals = (
> user => $r->user,
> users => "$users_ref"
> );
> <b>Assign To:</b> [% CGI.popup_menu("assignee", [% $users_ref %]) %]
>
> and he bombs out. Obviously I can't nest the
> interpolation signs -- [% %] -- but what should I use
> instead when I have a var that needs to be interpolated
> into a context which itself is interpolated?
Dennis,
Maybe you should do:
users => $users_ref
without the quotes. Then, you should be able to do:
[% CGI.popup_menu("assignee", users_ref) %]
and have it work...
--mark mills
_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://www.template-toolkit.org/mailman/listinfo/templates