##// 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 {% extends "boards/thread.html" %}
1 {% extends "boards/thread.html" %}
2
2
3 {% load i18n %}
3 {% load i18n %}
4 {% load static from staticfiles %}
4 {% load static from staticfiles %}
5 {% load board %}
5 {% load board %}
6 {% load tz %}
6 {% load tz %}
7
7
8 {% block thread_content %}
8 {% block thread_content %}
9 {% get_current_language as LANGUAGE_CODE %}
9 {% get_current_language as LANGUAGE_CODE %}
10 {% get_current_timezone as TIME_ZONE %}
10 {% get_current_timezone as TIME_ZONE %}
11
11
12 <div class="thread">
12 <div class="thread">
13 {% for post in thread.get_top_level_replies %}
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 {% endfor %}
15 {% endfor %}
16 </div>
16 </div>
17
17
18 <script src="{% static 'js/thread.js' %}"></script>
18 <script src="{% static 'js/thread.js' %}"></script>
19 {% endblock %}
19 {% endblock %}
General Comments 0
You need to be logged in to leave comments. Login now