http://www.perlmonks.org?node_id=815778


in reply to DBIx::Class and Template toolkit context problem

All relationships should have an _rs method for exactly this issue. Try:

[% IF user.objects_rs.count %] ... [% END %]

FYI, this is a FAQ. (See "How do I use DBIx::Class objects in my TT templates?")

--
"Go up to the next female stranger you see and tell her that her "body is a wonderland."
My hypothesis is that she’ll be too busy laughing at you to even bother slapping you.
" (src)

Replies are listed 'Best First'.
Re^2: DBIx::Class and Template toolkit context problem
by Cybris (Sexton) on Jan 05, 2010 at 15:51 UTC

    Thank you very much, this is even better than my ugly workaround!