##// END OF EJS Templates
Fixed thread OP id in thread view. Fixed reply count in thread view
neko259 -
r404:80f183eb 1.4 default
parent child Browse files
Show More
@@ -119,7 +119,7 b' function initAutoupdate() {'
119 }
119 }
120
120
121 function getReplyCount() {
121 function getReplyCount() {
122 return $('.thread').children('.post').length - 1
122 return $('.thread').children('.post').length
123 }
123 }
124
124
125 function getImageCount() {
125 function getImageCount() {
@@ -95,7 +95,7 b''
95 <form id="form" enctype="multipart/form-data" method="post"
95 <form id="form" enctype="multipart/form-data" method="post"
96 >{% csrf_token %}
96 >{% csrf_token %}
97 <div class="post-form-w">
97 <div class="post-form-w">
98 <div class="form-title">{% trans "Reply to thread" %} #{{ posts.0.id }}</div>
98 <div class="form-title">{% trans "Reply to thread" %} #{{ thread.get_opening_post.id }}</div>
99 <div class="post-form">
99 <div class="post-form">
100 <div class="form-row">
100 <div class="form-row">
101 <div class="form-label">{% trans 'Title' %}</div>
101 <div class="form-label">{% trans 'Title' %}</div>
General Comments 0
You need to be logged in to leave comments. Login now