diff options
author | TOW | 2019-03-29 08:48:53 -0300 |
---|---|---|
committer | TOW | 2019-03-29 08:48:53 -0300 |
commit | 6f703d8e197b40d9b35609b4b989b99a9e10c020 (patch) | |
tree | dfc1669d0fbe79986588be5e0e430e7bb3789508 /cgi/templates/txt_thread.html | |
parent | 020eeb2441522b312e21e231a52e206010d43e7a (diff) | |
download | weabot-6f703d8e197b40d9b35609b4b989b99a9e10c020.tar.gz weabot-6f703d8e197b40d9b35609b4b989b99a9e10c020.tar.xz weabot-6f703d8e197b40d9b35609b4b989b99a9e10c020.zip |
This reverts commit 0e00b84f5de2eee1d376d7848397f41cc888607c.
Diffstat (limited to 'cgi/templates/txt_thread.html')
-rw-r--r-- | cgi/templates/txt_thread.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cgi/templates/txt_thread.html b/cgi/templates/txt_thread.html index 6765630..5cfeb8a 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"}, #{thread['size']})</span></h3> + <h3>#{thread['subject']} <span>(${(str(thread['length'])+" respuestas") if thread['length']>1 else "Una respuesta"})</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,6 +55,7 @@ </div> <?py #endif ?> <?py #endfor ?> + <div class="size">#{thread['size']}</div> </div> <hr /> <?py if thread['locked'] != '1': ?> |