Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| <%namespace file="utils.html" import="plain_link"/> | |
| <h2> | |
| ${plain_link(_('Recent Comments'), '/comments')} | |
| </h2> | |
| <% | |
| t = thing.things | |
| comment_generator = t.item_iter(t.get_items()) | |
| %> | |
| %for a in comment_generator: | |
| <div class="inline-comment"> | |
| ${a.render()} | |
| </div> | |
| %endfor: |