##// END OF EJS Templates
Do not use old moderator variable in the tree view
neko259 -
r1391:010e79ad default
parent child Browse files
Show More
@@ -1,19 +1,19 b''
1 1 {% extends "boards/thread.html" %}
2 2
3 3 {% load i18n %}
4 4 {% load static from staticfiles %}
5 5 {% load board %}
6 6 {% load tz %}
7 7
8 8 {% block thread_content %}
9 9 {% get_current_language as LANGUAGE_CODE %}
10 10 {% get_current_timezone as TIME_ZONE %}
11 11
12 12 <div class="thread">
13 13 {% for post in thread.get_top_level_replies %}
14 {% post_view post moderator=moderator mode_tree=True %}
14 {% post_view post mode_tree=True %}
15 15 {% endfor %}
16 16 </div>
17 17
18 18 <script src="{% static 'js/thread.js' %}"></script>
19 19 {% endblock %}
General Comments 0
You need to be logged in to leave comments. Login now