Index: .hgsubstate
===================================================================
--- .hgsubstate	(revision 386)
+++ .hgsubstate	(revision 424)
@@ -1,1 +1,1 @@
-5072e71727907198fdd83d08d21b9034ffb6ea5c projects
+bfbe9be7735491de83fdb831aaa8b03bd13dc7f4 projects
Index: djangobb_forum/templates/djangobb_forum/forum_row.html
===================================================================
--- djangobb_forum/templates/djangobb_forum/forum_row.html	(revision 398)
+++ djangobb_forum/templates/djangobb_forum/forum_row.html	(revision 424)
@@ -18,7 +18,9 @@
 				<p>
 				{% cache 6000 moderators forum.id %}
-					{% if forum.moderator.exist %}
-						{% include 'djangobb_forum/moderators.html' %}
-					{% endif %}
+					{% with forum.moderators.all as moderators %}
+						{% if moderators %}
+							{% include 'djangobb_forum/moderators.html' %}
+						{% endif %}
+					{% endwith %}
 				{% endcache %}
 				</p>
Index: djangobb_forum/templates/djangobb_forum/moderators.html
===================================================================
--- djangobb_forum/templates/djangobb_forum/moderators.html	(revision 371)
+++ djangobb_forum/templates/djangobb_forum/moderators.html	(revision 424)
@@ -2,5 +2,5 @@
 {% load i18n %}
 <em>({% trans "Moderated by" %}</em> 
-	{% for moderator in forum.moderators.all %}
+	{% for moderator in moderators %}
 		{% if forloop.last %}
 			{{ moderator|profile_link }})
Index: djangobb_forum/templates/djangobb_forum/topic.html
===================================================================
--- djangobb_forum/templates/djangobb_forum/topic.html	(revision 422)
+++ djangobb_forum/templates/djangobb_forum/topic.html	(revision 424)
@@ -99,9 +99,11 @@
 						<p class="postedit"><em>{% trans "Edited" %} {{ post.updated_by.username }} ({% forum_time post.updated %})</em></p>
 					{% endif %}
-					{% if post.attachments.exists %}
-						{% for attach in post.attachments.all %}
-							<p class="postedit"><em>{% trans "Attachments:" %} <br />{{ attach|attachment_link }}</em></p>
-						{% endfor %}
-					{% endif %}
+					{% with post.attachments.all as attachments %}
+						{% if attachments %}
+							{% for attach in attachments %}
+								<p class="postedit"><em>{% trans "Attachments:" %} <br />{{ attach|attachment_link }}</em></p>
+							{% endfor %}
+						{% endif %}
+					{% endwith %}
 				</div>
 			</div>
