# HG changeset patch # User neko259 # Date 2015-03-17 15:55:46 # Node ID 925689f7dc58c160954601c81ed244a2d395b75b # Parent 5204c74d176abc296f99f323e687d78727608f49 Removed unnecessary "with" variables in the thread template 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 @@ -31,13 +31,9 @@ {% endif %}
- {% with can_bump=thread.can_bump %} {% for post in thread.get_replies %} - {% with is_opening=forloop.first %} - {% post_view post moderator=moderator %} - {% endwith %} + {% post_view post moderator=moderator %} {% endfor %} - {% endwith %}
{% if not thread.archived %}