projects
/
zzz-floof.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
cc59b549c81acefcb9fb3091245961175baa48df
[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>