<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><span class="Apple-style-span" style="font-family: Times; "><div>Catatlyst code in Controller:</div><div><br></div><div><div>&nbsp;$c-&gt;stash-&gt;{stuff} = [</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;$c-&gt;model('DB::Blah')-&gt;search(</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{},</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{ select =&gt; ['data', { count =&gt; 'data' }], group_by =&gt; ['data '] }</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;)</div><div>&nbsp;&nbsp; &nbsp;];</div></div><div><br></div><div>DataDumper Info:</div><div><br></div>&nbsp;'MyApp::Model::DB::Blah' ),<br>bless( {<br>'_source_handle' =&gt; bless( {<br>'source_moniker' =&gt; 'Blah',<br>'schema' =&gt; $VAR1-&gt;[0]{'_source_handle'}{'schema'}<br>}, 'DBIx::Class::ResultSourceHandle' ),<br>'_in_storage' =&gt; 1,<br>'_column_data' =&gt; {<br>'HASH(0x227bc00)' =&gt; '59', &lt;--I need to access this value from the template<br>'data' =&gt; '1000'<br>}<br>}, 'MyApp::Model::DB::Blah' ),<br>bless( {<br>'_source_handle' =&gt; bless( {<br>'source_moniker' =&gt; 'Blah',<br>'schema' =&gt; $VAR1-&gt;[0]{'_source_handle'}{'schema'}<br>}, 'DBIx::Class::ResultSourceHandle' ),<br>'_in_storage' =&gt; 1,<br>'_column_data' =&gt; {<br>'HASH(0x227bc00)' =&gt; '71',&nbsp;&lt;--I need to access this value from the template<br>'data' =&gt; '2000'<br>}</span><div><font class="Apple-style-span" face="Times"><br></font></div><div><font class="Apple-style-span" face="Times">Template&nbsp;Info:</font></div><div><font class="Apple-style-span" face="Times"><br></font></div><div><font class="Apple-style-span" face="Times">[% &nbsp; FOREACH s IN stuff %]</font></div><div><font class="Apple-style-span" face="Times">&lt;tr&gt;</font></div><div><font class="Apple-style-span" face="Times">&lt;td&gt;[%&nbsp;s.data&nbsp;%]&lt;/td&gt;</font></div><div><font class="Apple-style-span" face="Times">&lt;td&gt;[% s.? %]&lt;/td&gt; &lt;-- I am not sure how to access this value in the template</font></div><div><font class="Apple-style-span" face="Times">&lt;/tr&gt;</font></div><div><font class="Apple-style-span" face="Times">[% END %]<br></font><div><font class="Apple-style-span" face="Times"><br></font></div><div><font class="Apple-style-span" face="Times">I can access data scalar just fine, but am not sure how to handle the HASH.</font></div><div><font class="Apple-style-span" face="Times"><br></font></div><div><font class="Apple-style-span" face="Times">Jonathan</font></div></div></body></html>