Tom Cameron writes: > ... > "_['sequence-item'].absolute_url()" Not sure, that this is related to your problem (probably not), but "_[...]" is usually calling for problems when you expect the result to be an object. Use "_.getitem('sequence-item')" instead. Dieter