<%def name="comment_block(comments)">

${len(comments)} comments

## XXX make sure these do the right thing when this is a subtree

View all

Reply

${comment_thread(comments)} <%def name="comment_thread(comments)"> % for comment in comments:
${comment.user.name}
${comment.time}

${comment.text}

% endfor