<li>[% role.role.role %]</li> works because you're accessing the role name
(the third 'role') through the 'role' accessor (the second 'role') which is
defined in your many-to-many relationship:
__PACKAGE__->many_to_many("roles", "user_roles", *"role"*);
This is one of the beauties of DBIC; as soon as you have your relationships
defined, you have paths to the data you need. Imagine trying to write the
same type of request across a multiple key relationship.
-Tim
On Wed, Jul 11, 2012 at 11:29 AM, Robyn Jonahs <[email protected]>wrote:
> Thanks, that worked. Now I am off to see why.
>
> [ snip ]
>
_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/