aboutsummaryrefslogtreecommitdiff
path: root/cgi
diff options
context:
space:
mode:
Diffstat (limited to 'cgi')
-rw-r--r--cgi/templates/board.html6
-rw-r--r--cgi/templates/board.jp.html6
2 files changed, 6 insertions, 6 deletions
diff --git a/cgi/templates/board.html b/cgi/templates/board.html
index 3732ba9..bc70c8d 100644
--- a/cgi/templates/board.html
+++ b/cgi/templates/board.html
@@ -136,7 +136,7 @@
<?py for post in thread['posts']: ?>
<?py if int(post['parentid']) != 0: ?>
<table><tr><td class="ell">…</td>
- <td class="reply" id="p#{post['id']}">
+ <td class="reply#{' deleted' if post['IS_DELETED'] > 0 else ''}" id="p#{post['id']}">
<?py elif post['file']: ?>
<?py if post['image_width'] != '0': ?>
<div class="fs"><span>Nombre de archivo:</span><a href="#{images_url}#{board}/src/#{post['file']}" class="expimg" target="_blank" data-id="#{post['id']}" data-thumb="#{images_url}#{board}/thumb/#{post['thumb']}" data-w="#{post['image_width']}" data-h="#{post['image_height']}" data-tw="#{post['thumb_width']}" data-th="#{post['thumb_height']}">#{post['file']}</a>-(#{post['file_size']} B, #{post['image_width']}x#{post['image_height']})
@@ -164,9 +164,9 @@
<?py #endif ?>
<a name="#{post['id']}"></a>
<?py if post['IS_DELETED'] == 1: ?>
- <span class="deleted">No.#{post['id']} eliminado por usuario.</span>
+ <span>No.#{post['id']} eliminado por usuario.</span>
<?py elif post['IS_DELETED'] == 2: ?>
- <span class="deleted">No.#{post['id']} eliminado por miembro del staff.</span>
+ <span>No.#{post['id']} eliminado por staff.</span>
<?py else: ?>
<div class="info"><label><input type="checkbox" name="delete" value="#{post['id']}" />
<?py if post['subject'] : ?>
diff --git a/cgi/templates/board.jp.html b/cgi/templates/board.jp.html
index 06a9391..0dbef15 100644
--- a/cgi/templates/board.jp.html
+++ b/cgi/templates/board.jp.html
@@ -136,7 +136,7 @@
<?py for post in thread['posts']: ?>
<?py if int(post['parentid']) != 0: ?>
<table><tr><td class="ell">…</td>
- <td class="reply" id="p#{post['id']}">
+ <td class="reply#{' deleted' if post['IS_DELETED'] > 0 else ''}" id="p#{post['id']}">
<?py elif post['file']: ?>
<?py if post['image_width'] != '0': ?>
<div class="fs"><span>画像ファイル名:</span><a href="#{images_url}#{board}/src/#{post['file']}" class="expimg" target="_blank" data-id="#{post['id']}" data-thumb="#{images_url}#{board}/thumb/#{post['thumb']}" data-w="#{post['image_width']}" data-h="#{post['image_height']}" data-tw="#{post['thumb_width']}" data-th="#{post['thumb_height']}">#{post['file']}</a>-(#{post['file_size']} B, #{post['image_width']}x#{post['image_height']})
@@ -164,9 +164,9 @@
<?py #endif ?>
<a name="#{post['id']}"></a>
<?py if post['IS_DELETED'] == '1': ?>
- <span class="deleted">No.#{post['id']}はユーザーに削除されました.</span>
+ <span>No.#{post['id']}はユーザーに削除されました.</span>
<?py elif post['IS_DELETED'] == '2': ?>
- <span class="deleted">No.#{post['id']}は管理人に削除されました.</span>
+ <span>No.#{post['id']}は管理人に削除されました.</span>
<?py else: ?>
<div class="info"><label><input type="checkbox" name="delete" value="#{post['id']}" /><span class="subj">#{post['subject'] if post['subject'] else default_subject}</span></label>
<?py if post['email']: ?>