df5cbf6c5298e69cf8a19a3372b119b58ca0ff8d
[zzz-floof.git] / floof / templates / comments / lib.mako
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)}
5 </%def>
6
7 <%def name="comment_thread(comments)">
8 % for comment in comments:
9 <div class="comment">
10     <div class="user">${comment.user.name}</div>
11     <div class="time">${comment.time}</div>
12     <p>${comment.text}</p>
13 </div>
14 % endfor
15 </%def>