diff options
author | Choom | 2022-12-18 13:43:14 -0300 |
---|---|---|
committer | Choom | 2022-12-18 13:45:36 -0300 |
commit | e871db28f48f96280eb98c6b611181a6f51e3a57 (patch) | |
tree | c6f4811ffbcb822a9ded642659c05f90d65769c2 /cgi/templates/txt_archive.html | |
parent | 7eed990b51be5d76e787c201e343cba3488fa252 (diff) | |
download | weabot-e871db28f48f96280eb98c6b611181a6f51e3a57.tar.gz weabot-e871db28f48f96280eb98c6b611181a6f51e3a57.tar.xz weabot-e871db28f48f96280eb98c6b611181a6f51e3a57.zip |
Div replies archivo
Diffstat (limited to 'cgi/templates/txt_archive.html')
-rw-r--r-- | cgi/templates/txt_archive.html | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/cgi/templates/txt_archive.html b/cgi/templates/txt_archive.html index 1407fcf..a91a055 100644 --- a/cgi/templates/txt_archive.html +++ b/cgi/templates/txt_archive.html @@ -39,9 +39,12 @@ <?py #endif ?> <a href="#bottom">▼Bajar▼</a> </div> -<hr /><div class="stop red">■ Este hilo se encuentra guardado en el archivo</div><hr /> +<hr /> +<div class="stop red">■ Este hilo se encuentra guardado en el archivo</div> +<hr /> <div class="thread" data-length="#{thread['length']}"> <h3>#{thread['subject']} <span>(${(str(thread['length'])+" respuestas") if thread['length'] > 1 else "Una respuesta"})</span></h3> + <div class="replies"> <?py for post in thread['posts']: ?> <?py if post['IS_DELETED'] == 1: ?> <div class="reply deleted" data-n="#{post['num']}"><h4>#{post['num']} : Mensaje eliminado por usuario.</h4></div> @@ -67,11 +70,14 @@ </div> <?py #endif ?> <?py #endfor ?> + </div> <?py if 'size' in thread: ?> - <div id="size">#{thread['size']}</div> + <div id="size">#{thread['size']}</div> <?py #endif ?> </div> -<hr /><div class="stop red">■ Este hilo se encuentra guardado en el archivo</div><hr /> +<hr /> +<div class="stop red">■ Este hilo se encuentra guardado en el archivo</div> +<hr /> <form class="threadlinks"> <a href="#{boards_url}#{board}/">■Volver al BBS■</a> <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/">Hilo completo</a> @@ -91,4 +97,4 @@ <div class="end">weabot.py ver <?py include('templates/revision.html') ?> Bienvenido a Internet BBS/IB</div> <a name="bottom"></a> </body> -</html>
\ No newline at end of file +</html> |