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

View all

Reply

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

${comment.text}

% endfor