Rafael Caceres wrote: > Using [% query.end_form.list.join %] instead of just [% query.end_form > %] worked like a charm, thanks a lot.
In fact, you don't even need the 'list', you can just write: [% query.end_form.join %] If query.end_form returns a single item, TT will automagically upgrade it to a single item list in order to apply the join list virtual method. So you get a string back either way, containing the single item, or the concatentation of multiple items. A _______________________________________________ templates mailing list [EMAIL PROTECTED] http://lists.ourshack.com/mailman/listinfo/templates
