1 <%def name="comment_block(comments)">
2 <p><a href="${url(controller='comments', action='thread', owner_url=h.get_comment_owner_url(**c.route))}">View all</a></p>
3 <p><a href="${url(controller='comments', action='reply', owner_url=h.get_comment_owner_url(**c.route))}">Reply</a></p>
4 ${comment_thread(comments)}
7 <%def name="comment_thread(comments)">
8 % for comment in comments:
10 <div class="user">${comment.user.name}</div>
11 <div class="time">${comment.time}</div>
12 <p>${comment.text}</p>