Super-simple comment display.
[zzz-floof.git] / floof / templates / comments.mako
1 <%def name="entire_thread(discussion)">
2 <%
3     if not discussion:
4         return
5 %>\
6 <ul>
7     % for comment in discussion.comments:
8     <li>${comment.text}</li>
9     % endfor
10 </ul>
11 </%def>