diff options
Diffstat (limited to 'cgi')
-rw-r--r-- | cgi/templates/txt_thread.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cgi/templates/txt_thread.html b/cgi/templates/txt_thread.html index c438944..b01a126 100644 --- a/cgi/templates/txt_thread.html +++ b/cgi/templates/txt_thread.html @@ -21,7 +21,7 @@ <div class="warn yellow">El hilo ha recibido más de 900 mensajes. Cuando llegue a 1000 será cerrado.</div> <?py #endif ?> <div class="thread" data-length="#{thread['length']}"> - <h3>#{thread['subject']} <span>(${(str(thread['length'])+" respuestas") if thread['length']>1 else "Una respuesta"})</span></h3> + <h3>#{thread['subject']} <span>(${(str(thread['length'])+" respuestas") if thread['length']>1 else "Una respuesta"}, #{thread['size']})</span></h3> <?py for post in thread['posts']: ?> <?py if post['IS_DELETED'] == '1': ?> <h4 class="deleted">#{post['num']} : Mensaje eliminado por el usuario.</h4> @@ -55,7 +55,6 @@ </div> <?py #endif ?> <?py #endfor ?> - <div class="size">#{thread['size']}</div> </div> <hr /> <?py if thread['locked'] != '1': ?> |