changeset 394:2cb0cc334c50

Fixing #186; after upgrading to Django 1.3, can remove the kludge on the cycle tag in the forums topic.html template.
author Brian Neal <bgneal@gmail.com>
date Thu, 24 Mar 2011 00:49:21 +0000
parents 9af6bd45c1f8
children e10fa0d8e7ad
files gpp/templates/forums/topic.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gpp/templates/forums/topic.html	Thu Mar 24 00:15:34 2011 +0000
+++ b/gpp/templates/forums/topic.html	Thu Mar 24 00:49:21 2011 +0000
@@ -29,7 +29,7 @@
 
 <table class="forum-topic" id="forum-topic">
 {% for post in page.object_list %}
-   <!-- {% cycle 'odd' 'even' as rowcolors %} -->
+   {% cycle 'odd' 'even' as rowcolors silent %}
    {% include 'forums/display_post.html' %}
 {% endfor %}
 </table>