[% USE scalar %]
[% BLOCK show_comment %]
  
  
    [% this_comment.body %]
  
  
    [% FOREACH child IN this_comment.scalar.comments.all %]
      [% PROCESS show_comment this_comment=child %]
    [% END %]
  
[% END %]
[% IF comment %]
  [% PROCESS show_comment this_comment=comment %]
[% END %]