diff options
Diffstat (limited to 'cgi/templates/txt_thread.en.html')
-rw-r--r-- | cgi/templates/txt_thread.en.html | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/cgi/templates/txt_thread.en.html b/cgi/templates/txt_thread.en.html index 84c3fc1..45f8f8e 100644 --- a/cgi/templates/txt_thread.en.html +++ b/cgi/templates/txt_thread.en.html @@ -27,16 +27,12 @@ <h3>#{thread['subject']} <span>(${(str(thread['length'])+" replies") if thread['length']>1 else "1 reply"})</span></h3> <?py for post in thread['posts']: ?> <?py if post['IS_DELETED'] == '1': ?> - <h4 class="deleted">#{post['num']} : Post deleted by user.</h4> + <div class="reply deleted" id="p#{post['id']}" data-n="#{post['num']}"><h4>#{post['num']} : Post deleted by user.</h4></div> <?py elif post['IS_DELETED'] == '2': ?> - <h4 class="deleted">#{post['num']} : Post deleted by staff.</h4> + <div class="reply deleted" id="p#{post['id']}" data-n="#{post['num']}"><h4>#{post['num']} : Post deleted by staff.</h4></div> <?py else: ?> - <?py if post['num'] == 1: ?> - <div class="reply first" data-n="#{post['num']}"> - <?py else: ?> - <div class="reply" data-n="#{post['num']}"> - <?py #endif ?> - <h4><a href="#" class="num">#{post['num']}</a> : + <div class="reply#{' first' if post['num'] == 1 else ''}" id="p#{post['id']}" data-n="#{post['num']}"> + <h4>#{post['num']} : <?py if post['email']: ?> <?py if post['tripcode']: ?> <a href="mailto:#{post['email']}"><span class="name"><b>#{post['name']}</b> #{post['tripcode']}</span></a> |