diff --git a/boards/templates/boards/thread.html b/boards/templates/boards/thread.html
--- a/boards/templates/boards/thread.html
+++ b/boards/templates/boards/thread.html
@@ -4,7 +4,6 @@
{% load cache %}
{% load static from staticfiles %}
{% load board %}
-{% load compress %}
{% block head %}
{{ opening_post.get_title|striptags|truncatewords:10 }}
@@ -35,50 +34,43 @@
{% with can_bump=thread.can_bump %}
{% for post in thread.get_replies %}
- {% if forloop.first %}
- {% post_view post moderator=moderator is_opening=True thread=thread can_bump=can_bump opening_post_id=opening_post.id %}
- {% else %}
- {% post_view post moderator=moderator is_opening=False thread=thread can_bump=can_bump opening_post_id=opening_post.id %}
- {% endif %}
+ {% with is_opening=forloop.first %}
+ {% post_view post moderator=moderator is_opening=is_opening thread=thread can_bump=can_bump opening_post_id=opening_post.id %}
+ {% endwith %}
{% endfor %}
{% endwith %}
{% if not thread.archived %}
-
-