aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates/txt_board.html
diff options
context:
space:
mode:
Diffstat (limited to 'cgi/templates/txt_board.html')
-rw-r--r--cgi/templates/txt_board.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/cgi/templates/txt_board.html b/cgi/templates/txt_board.html
index f819f05..a165ac1 100644
--- a/cgi/templates/txt_board.html
+++ b/cgi/templates/txt_board.html
@@ -46,9 +46,9 @@
<h2><span>[#{titer}:#{thread['length']}]</span><a href="#{boards_url}#{board}/read/#{thread['timestamp']}/#{'l50' if thread['length'] > 50 else ''}">#{thread['posts'][0]['subject']}</a></h2>
<?py for post in thread['posts']: ?>
<?py if post['IS_DELETED'] == '1': ?>
- <h4 class="deleted">#{post['num']} Mensaje eliminado por usuario.</h4>
+ <h4 class="deleted">#{post['num']} : Mensaje eliminado por usuario.</h4>
<?py elif post['IS_DELETED'] == '2': ?>
- <h4 class="deleted">#{post['num']} Mensaje eliminado por staff.</h4>
+ <h4 class="deleted">#{post['num']} : Mensaje eliminado por staff.</h4>
<?py else: ?>
<div class="reply#{' first' if post['num'] == 1 else ''}" data-id="#{post['id']}" data-n="#{post['num']}">
<h4>#{post['num']} :
@@ -66,7 +66,7 @@
<?py #endif ?>
<?py #endif ?> : <span class="date" data-unix="#{post['timestamp']}">#{post['timestamp_formatted']}</span></h4>
<?py if post['file']: ?>
- <a href="/#{board}/src/#{post['file']}" target="_blank" class="thumb"><img src="#{'/static/' if post['thumb'].startswith('mime') else ('/'+board+'/thumb/')}#{post['thumb']}" width="#{post['thumb_width']}" height="#{post['thumb_height']}" alt="${post['file']}-(${post['file_size']}B)" /></a>
+ <a href="/#{board}/src/#{post['file']}" target="_blank" class="thumb"><img src="#{'/static/' if post['thumb'].startswith('mime') else ('/'+board+'/thumb/')}#{post['thumb']}" width="#{post['thumb_width']}" height="#{post['thumb_height']}" title="${post['file']}-(${post['file_size']} B)" /></a>
<?py #endif ?>
<div class="msg">
#{post['message']}